Full screen resize fix (#1359)
* Fixed WM_WINDOWPOSCHANGED not handling window resize when leving full screen mode. * Fix whitespaces.
This commit is contained in:
@@ -857,7 +857,7 @@ MainWindowProcedure(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
|
|||||||
config_save();
|
config_save();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(pos->flags & SWP_NOSIZE)) {
|
if (!(pos->flags & SWP_NOSIZE) || !user_resize) {
|
||||||
plat_vidapi_enable(0);
|
plat_vidapi_enable(0);
|
||||||
|
|
||||||
MoveWindow(hwndSBAR, 0, rect.bottom - sbar_height, sbar_height, rect.right, TRUE);
|
MoveWindow(hwndSBAR, 0, rect.bottom - sbar_height, sbar_height, rect.right, TRUE);
|
||||||
|
|||||||
Reference in New Issue
Block a user