feat: opens sole folder instead of upper folder after extraction; cancel folder priority over file in comparison; other minor ui fix

This commit is contained in:
shunf4
2024-05-11 15:59:23 +08:00
parent 7c6d4e7757
commit 6b5da20fb6
10 changed files with 151 additions and 25 deletions

View File

@@ -69,6 +69,9 @@ public:
bool ShowButtonsLables;
bool LargeButtons;
UString DelayedOpenFolderAfterExtractPath;
NWindows::NSynchronization::CCriticalSection *pDelayedOpenFolderAfterExtractPathCriticalSection;
CAppState AppState;
CPanelCallbackImp m_PanelCallbackImp[kNumPanelsMax];
CPanel Panels[kNumPanelsMax];
@@ -91,7 +94,9 @@ public:
_window(NULL),
AutoRefresh_Mode(true),
NumPanels(2),
LastFocusedPanel(0)
LastFocusedPanel(0),
DelayedOpenFolderAfterExtractPath(L""),
pDelayedOpenFolderAfterExtractPathCriticalSection(NULL)
{
SetPanels_AutoRefresh_Mode();
}