Browse Source

FIX: FileView: missing call to TOrderedFileView.OnChangeActiveFille() (#690)

rich2014 2 years ago
parent
commit
2b8b62045e
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/fileviews/uorderedfileview.pas

+ 2 - 0
src/fileviews/uorderedfileview.pas

@@ -885,6 +885,8 @@ begin
       if Result then
       begin
           SetUpdate(Index);
+          if Assigned(OnChangeActiveFile) then
+            OnChangeActiveFile(Self, FFiles[Index].FSFile);
           Exit(True);
       end;
     end;