Commit 1accde20 authored by Jacob Czekalla's avatar Jacob Czekalla Committed by Alexandre Julliard

comctl32/status: Invalidate entire status bar on WM_SIZE.

parent db43ece9
......@@ -1068,8 +1068,9 @@ STATUSBAR_WMSize (STATUS_INFO *infoPtr, WORD flags)
width = parent_rect.right - parent_rect.left;
x = parent_rect.left;
y = parent_rect.bottom - infoPtr->height;
MoveWindow (infoPtr->Self, x, y, width, infoPtr->height, TRUE);
MoveWindow(infoPtr->Self, x, y, width, infoPtr->height, FALSE);
STATUSBAR_SetPartBounds (infoPtr);
InvalidateRect(infoPtr->Self, NULL, FALSE);
return TRUE;
}
......
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