mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 16:35:49 +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=/branches/ros-branch-0_3_1/; revision=25757
This commit is contained in:
parent
f56e85deb7
commit
f88b54561d
1 changed files with 3 additions and 3 deletions
|
@ -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))))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue