https://git.reactos.org/?p=reactos.git;a=commitdiff;h=818d6608689cb2257b92bc...
commit 818d6608689cb2257b92bc674638beb33a14a70d Author: Bișoc George fraizeraust99@gmail.com AuthorDate: Sun Jul 7 14:47:44 2019 +0200 Commit: Hermès BÉLUSCA - MAÏTO hermes.belusca-maito@reactos.org CommitDate: Sun Jul 7 14:47:44 2019 +0200
[SHELL32] Enable the "Apply" button when user takes action on the edit box control (#1720)
CORE-12312 --- dll/win32/shell32/dialogs/recycler_prop.cpp | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/dll/win32/shell32/dialogs/recycler_prop.cpp b/dll/win32/shell32/dialogs/recycler_prop.cpp index d249e05f396..95840be7699 100644 --- a/dll/win32/shell32/dialogs/recycler_prop.cpp +++ b/dll/win32/shell32/dialogs/recycler_prop.cpp @@ -304,6 +304,10 @@ RecycleBinDlg( toggleNukeOnDeleteOption(hwndDlg, FALSE); PropSheet_Changed(GetParent(hwndDlg), hwndDlg); break; + case 14002: + if (HIWORD(wParam) == EN_CHANGE) + PropSheet_Changed(GetParent(hwndDlg), hwndDlg); + break; case 14003: toggleNukeOnDeleteOption(hwndDlg, TRUE); PropSheet_Changed(GetParent(hwndDlg), hwndDlg);