mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
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=/trunk/; revision=25756
This commit is contained in:
parent
8c6bd0b95a
commit
cd679a1f7e
1 changed files with 3 additions and 3 deletions
|
@ -486,7 +486,7 @@ NtUserCreateWindowStation(
|
||||||
* Initialize the new window station object
|
* Initialize the new window station object
|
||||||
*/
|
*/
|
||||||
WindowStationObject->ScreenSaverRunning = FALSE;
|
WindowStationObject->ScreenSaverRunning = FALSE;
|
||||||
WindowStationObject->ScreenSaverTimeOut = 30;
|
WindowStationObject->ScreenSaverTimeOut = 10 * 60;
|
||||||
WindowStationObject->FlatMenu = FALSE;
|
WindowStationObject->FlatMenu = FALSE;
|
||||||
|
|
||||||
if(!(CurInfo = ExAllocatePool(PagedPool, sizeof(SYSTEM_CURSORINFO))))
|
if(!(CurInfo = ExAllocatePool(PagedPool, sizeof(SYSTEM_CURSORINFO))))
|
||||||
|
|
Loading…
Reference in a new issue