mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: file relocate issue in FileView (eg. iCloud Drive)
This commit is contained in:
parent
ddb9a6c2b0
commit
c3d6a09ac6
1 changed files with 1 additions and 1 deletions
|
|
@ -886,7 +886,7 @@ begin
|
|||
if PathIsAbsolute then
|
||||
Result := (FFiles[Index].FSFile.FullPath = aFilePath)
|
||||
else
|
||||
Result := (FFiles[Index].FSFile.Name = aFilePath);
|
||||
Result := (FileSource.GetFileName(FFiles[Index].FSFile) = aFilePath);
|
||||
if Result then
|
||||
begin
|
||||
SetUpdate(Index);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue