[ZIPFLDR] Enable / disable the correct wizard buttons

This commit is contained in:
Andreas Bjerkeholt 2018-08-21 11:14:14 +02:00 committed by Harteex
parent f43a7b81a7
commit a4554c07b0
No known key found for this signature in database
GPG key ID: EB9172F9AB0BD6BC

View file

@ -163,6 +163,7 @@ public:
m_pExtract->m_DirectoryChanged = false;
::EnableWindow(GetDlgItem(IDC_PASSWORD), FALSE); /* Not supported for now */
GetParent().CenterWindow(::GetDesktopWindow());
SetWizardButtons(PSWIZB_NEXT);
return 0;
}
@ -171,6 +172,7 @@ public:
::EnableWindow(GetDlgItem(IDC_BROWSE), FALSE);
::EnableWindow(GetDlgItem(IDC_DIRECTORY), FALSE);
::EnableWindow(GetDlgItem(IDC_PASSWORD), FALSE);
SetWizardButtons(0);
if (m_pExtract->m_DirectoryChanged)
UpdateDirectory();
@ -183,6 +185,7 @@ public:
::EnableWindow(GetDlgItem(IDC_BROWSE), TRUE);
::EnableWindow(GetDlgItem(IDC_DIRECTORY), TRUE);
::EnableWindow(GetDlgItem(IDC_PASSWORD), FALSE); /* Not supported for now */
SetWizardButtons(PSWIZB_NEXT);
return TRUE;
}