Commit 4c9756e4 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

Y coordinate of the "magic" static control should be treated

inclusively.
parent 25e2a320
......@@ -589,7 +589,7 @@ static void ArrangeCtrlPositions(HWND hwndChildDlg, HWND hwndParentDlg, BOOL hid
child_width_fixup = rectChild.left - old_left;
}
/* move even if stc32 doesn't exist */
if (rectChild.top > rectStc32.bottom)
if (rectChild.top >= rectStc32.bottom)
{
LONG old_top = rectChild.top;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment