- Properly handle multiple monitors in the screensavers (expand the screensaver window to all monitors)

svn path=/trunk/; revision=42979
This commit is contained in:
Colin Finck 2009-09-01 18:48:36 +00:00
parent 61722a34c0
commit 733c8b092d

View file

@ -174,8 +174,8 @@ static int LaunchScreenSaver(HWND hParent)
else
{
style = WS_POPUP;
rc.right = GetSystemMetrics(SM_CXSCREEN);
rc.bottom = GetSystemMetrics(SM_CYSCREEN);
rc.right = GetSystemMetrics(SM_CXVIRTUALSCREEN);
rc.bottom = GetSystemMetrics(SM_CYVIRTUALSCREEN);
style |= WS_VISIBLE;
}