mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: fix the filepath that need escaping
This commit is contained in:
parent
352c0168db
commit
29cc734aaa
1 changed files with 2 additions and 2 deletions
|
|
@ -6338,7 +6338,7 @@ begin
|
|||
if files.Count>0 then begin
|
||||
SetLength( filenames, files.Count );
|
||||
for i:=0 to files.Count-1 do begin
|
||||
filenames[i]:= 'file://' + files[i].FullPath;
|
||||
filenames[i]:= files[i].FullPath;
|
||||
end;
|
||||
end else begin
|
||||
activeFile:= ActiveFrame.CloneActiveFile;
|
||||
|
|
@ -6350,7 +6350,7 @@ begin
|
|||
FreeAndNil( activeFile );
|
||||
if path <> '' then begin
|
||||
SetLength( filenames, 1 );
|
||||
filenames[0]:= 'file://' + path;
|
||||
filenames[0]:= path;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue