Explorar el Código

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

rich2014 hace 2 años
padre
commit
2b8b62045e
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  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;