mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
Michael Bruestle (michael_bruestle@yahoo.com)
- Properly handle multiple monitors in the screensavers (expand the screensaver window to all monitors) svn path=/trunk/; revision=42979
This commit is contained in:
parent
61722a34c0
commit
733c8b092d
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue