Przeglądaj źródła

Bug fix: Hang when trying to open an inaccessible drive from drive drop down menu

Caused by incorrect merge d284d93a

Source commit: d4b08b04a3d9cd29aed15d27127a25b86ade6525
Martin Prikryl 11 miesięcy temu
rodzic
commit
1b73ccd5e1
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      source/forms/ScpCommander.cpp

+ 1 - 1
source/forms/ScpCommander.cpp

@@ -2368,7 +2368,7 @@ void __fastcall TScpCommanderForm::DoLocalPathComboBoxItemClick(TDirView * ADirV
   {
     // Changing the path failed, reset the combo box back.
     // Does not recurse, so infinite recursion should not happen.
-    DoLocalPathComboBoxItemClick(ADirView, PathComboBox);
+    LocalPathComboUpdate(ADirView, PathComboBox);
     throw;
   }
 }