mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Executing viewer (parameters were unnecessarily quoted twice).
This commit is contained in:
parent
aa7c1f4302
commit
aee2ed1b64
1 changed files with 1 additions and 1 deletions
|
|
@ -104,7 +104,7 @@ begin
|
|||
// TODO: If possible should run one instance of external viewer
|
||||
// with multiple file names as parameters.
|
||||
for i:=0 to FilesToView.Count-1 do
|
||||
RunExtTool(gExternalTools[etViewer], QuoteStr(FilesToView.Strings[i]));
|
||||
RunExtTool(gExternalTools[etViewer], FilesToView.Strings[i]);
|
||||
end;
|
||||
end // gUseExtView
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue