https://git.reactos.org/?p=reactos.git;a=commitdiff;h=dcf18826a50fc555886f6cd8cea9b66683e5146b
commit dcf18826a50fc555886f6cd8cea9b66683e5146b Author: Bișoc George <[email protected]> AuthorDate: Sun Aug 4 11:21:28 2019 +0200 Commit: Mark Jansen <[email protected]> CommitDate: Sat Aug 17 15:36:47 2019 +0200 [DESK] Change the property "Screensaver" page on text change If the user takes action on the edit box control of "Screensaver" dialog page, enable the "Apply" property button. CORE-16280 --- dll/cpl/desk/screensaver.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dll/cpl/desk/screensaver.c b/dll/cpl/desk/screensaver.c index 1a10456843a..02c05c9b650 100644 --- a/dll/cpl/desk/screensaver.c +++ b/dll/cpl/desk/screensaver.c @@ -747,7 +747,8 @@ ScreenSaverPageProc(HWND hwndDlg, case IDC_SCREENS_TIMEDELAY: { - PropSheet_Changed(GetParent(hwndDlg), hwndDlg); + if (command == EN_CHANGE) + PropSheet_Changed(GetParent(hwndDlg), hwndDlg); break; }
