comctl32/status: Invalidate entire status bar on WM_SIZE.

This commit is contained in:
Jacob Czekalla 2023-08-29 10:27:42 -04:00 committed by Alexandre Julliard
parent db43ece90a
commit 1accde204f

View file

@ -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;
}