Updated Freeze to be multi monitor friendly

pull/3/head
Marc Britten 2015-03-10 22:05:29 -05:00
parent 0f334cc040
commit 3b587d022a
1 changed files with 10 additions and 2 deletions

View File

@ -108,8 +108,16 @@ void ThawWindowPosF(HWND hwnd, const char *subKey, const char *name)
if(v)
ShowWindow(hwnd, SW_MAXIMIZE);
HMONITOR hMonitor;
MONITORINFO mi;
RECT dr;
GetWindowRect(GetDesktopWindow(), &dr);
hMonitor = MonitorFromRect(&r, MONITOR_DEFAULTTONEAREST);
mi.cbSize = sizeof(mi);
GetMonitorInfo(hMonitor, &mi);
dr = mi.rcMonitor;
// If it somehow ended up off-screen, then put it back.
Clamp(&(r.left), dr.left, dr.right);