Module: wine Branch: master Commit: 1accde204fd3f046c2ff56b67051ee71442188ba URL: https://gitlab.winehq.org/wine/wine/-/commit/1accde204fd3f046c2ff56b67051ee7...
Author: Jacob Czekalla jacobczekalla@gmail.com Date: Tue Aug 29 10:27:42 2023 -0400
comctl32/status: Invalidate entire status bar on WM_SIZE.
---
dlls/comctl32/status.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dlls/comctl32/status.c b/dlls/comctl32/status.c index 5251f3677b0..3e1bc4902ff 100644 --- a/dlls/comctl32/status.c +++ b/dlls/comctl32/status.c @@ -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; }