mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Bug [0000521] "Using forward slash in paths in windows breaks navigational feature(s)"
This commit is contained in:
parent
c455004e61
commit
9ca15cfd61
1 changed files with 2 additions and 1 deletions
|
|
@ -4332,7 +4332,8 @@ begin
|
|||
sDir:= GetHomeDir
|
||||
else
|
||||
begin
|
||||
sDir:= Trim(RemoveQuotation(Copy(sCmd, iIndex + 3, Length(sCmd))));
|
||||
sDir:= RemoveQuotation(Copy(sCmd, iIndex + 3, Length(sCmd)));
|
||||
sDir:= NormalizePathDelimiters(Trim(sDir));
|
||||
sDir:= ReplaceTilde(IncludeTrailingBackslash(sDir));
|
||||
sDir:= GetAbsoluteFileName(ActiveFrame.CurrentPath, sDir);
|
||||
end;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue