[SHELL32] Enable Apply button when shortcut show mode is changed (#5807)

Basically this happens when the combobox selection changes.
This commit is contained in:
Whindmar Saksit 2023-10-20 13:02:14 +02:00 committed by GitHub
parent 63eaf2bd52
commit ded91e310a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2886,7 +2886,7 @@ void CShellLink::OnCommand(HWND hwndDlg, int id, HWND hwndCtl, UINT codeNotify)
return;
}
}
if (codeNotify == EN_CHANGE)
if (codeNotify == EN_CHANGE || codeNotify == CBN_SELCHANGE)
{
if (!m_bInInit)
PropSheet_Changed(GetParent(hwndDlg), hwndDlg);