mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[SHELL32] Enable Apply button when shortcut show mode is changed (#5807)
Basically this happens when the combobox selection changes.
This commit is contained in:
parent
63eaf2bd52
commit
ded91e310a
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue