From f88b54561def2c19294ed91c3571fcb3330411bf Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Fri, 9 Feb 2007 10:46:13 +0000 Subject: [PATCH] 30 seconds screensaver timeout is just simply wrong. Developers should have test-settings inside *their* working copies, not trunk/release branches. Set it to 10 minutes (default value in WinXP, iirc). svn path=/branches/ros-branch-0_3_1/; revision=25757 --- reactos/subsystems/win32/win32k/ntuser/winsta.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/subsystems/win32/win32k/ntuser/winsta.c b/reactos/subsystems/win32/win32k/ntuser/winsta.c index a151e375eb2..1024ce906f7 100644 --- a/reactos/subsystems/win32/win32k/ntuser/winsta.c +++ b/reactos/subsystems/win32/win32k/ntuser/winsta.c @@ -485,9 +485,9 @@ NtUserCreateWindowStation( /* * Initialize the new window station object */ - WindowStationObject->ScreenSaverRunning = FALSE; - WindowStationObject->ScreenSaverTimeOut = 30; - WindowStationObject->FlatMenu = FALSE; + WindowStationObject->ScreenSaverRunning = FALSE; + WindowStationObject->ScreenSaverTimeOut = 10 * 60; + WindowStationObject->FlatMenu = FALSE; if(!(CurInfo = ExAllocatePool(PagedPool, sizeof(SYSTEM_CURSORINFO)))) {