[REGEDIT] Trivial resizing code fix

This commit is contained in:
Katayama Hirofumi MZ
2018-10-21 13:08:26 +02:00
committed by Mark Jansen
parent b3231e0bf5
commit 125db5ead9
+2 -2
View File
@@ -52,8 +52,8 @@ static void resize_frame_rect(HWND hWnd, PRECT prect)
if (IsWindowVisible(hStatusBar))
{
SetupStatusBar(hWnd, TRUE);
GetClientRect(hStatusBar, &rt);
prect->bottom -= rt.bottom;
GetWindowRect(hStatusBar, &rt);
prect->bottom -= rt.bottom - rt.top;
}
MoveWindow(g_pChildWnd->hWnd, prect->left, prect->top, prect->right, prect->bottom, TRUE);
}