[loc] fix resizing in height

* Also clarify some translations
This commit is contained in:
Pete Batard 2013-10-28 16:18:20 +00:00
parent 39c6d4e1a7
commit af12d0f8d7
4 changed files with 13 additions and 13 deletions

View file

@ -462,7 +462,7 @@ void ResizeMoveCtrl(HWND hDlg, HWND hCtrl, int dx, int dy, int dw, int dh)
border = GetBorderSize(hCtrl);
MoveWindow(hCtrl, point.x + (int)(fScale*(float)dx), point.y + (int)(fScale*(float)dy),
(rect.right - rect.left) + (int)(fScale*(float)dw + border.cx),
(rect.bottom - rect.top) + border.cy, TRUE);
(rect.bottom - rect.top) + (int)(fScale*(float)dh + border.cy), TRUE);
InvalidateRect(hCtrl, NULL, TRUE);
}