mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: the issue in TFileView.calcFileHashKey() in flatview mode on macOS
(cherry picked from commit e21165673b)
This commit is contained in:
parent
ef07355cdc
commit
aa260df7bf
1 changed files with 1 additions and 1 deletions
|
|
@ -1063,7 +1063,7 @@ end;
|
|||
function TFileView.calcFileHashKey(const FileName, APath: String): String;
|
||||
begin
|
||||
if FFlatView then begin
|
||||
Result := ExcludeTrailingPathDelimiter( APath + FileName );
|
||||
Result := ExcludeTrailingPathDelimiter( IncludeTrailingPathDelimiter(APath) + FileName );
|
||||
end else begin
|
||||
Result := FileName;
|
||||
end;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue