[REGEDIT] Trivial resizing code fix

This commit is contained in:
Katayama Hirofumi MZ 2018-10-15 23:28:19 +09:00 committed by Mark Jansen
parent b3231e0bf5
commit 125db5ead9
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B

View file

@ -52,8 +52,8 @@ static void resize_frame_rect(HWND hWnd, PRECT prect)
if (IsWindowVisible(hStatusBar)) if (IsWindowVisible(hStatusBar))
{ {
SetupStatusBar(hWnd, TRUE); SetupStatusBar(hWnd, TRUE);
GetClientRect(hStatusBar, &rt); GetWindowRect(hStatusBar, &rt);
prect->bottom -= rt.bottom; prect->bottom -= rt.bottom - rt.top;
} }
MoveWindow(g_pChildWnd->hWnd, prect->left, prect->top, prect->right, prect->bottom, TRUE); MoveWindow(g_pChildWnd->hWnd, prect->left, prect->top, prect->right, prect->bottom, TRUE);
} }