mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
[COMCTL32] Fix Status Bar Updating (#6696)
This fixes CORE-19497 'Regression, part of the statusbar with the sizegrip is not redrawn properly'
The regression was introduced / unhidden by 0.4.15-dev-5617-g 7866eb2886
Author of the patch: JIRA-user: I_Kill_Bugs
turned into PR by @Doug-Lyons
Thank you both!
KVM: https://reactos.org/testman/compare.php?ids=94433,94435
VBox: Builder Broken atm unfortunately
This commit is contained in:
parent
b6987d1463
commit
a771729e69
1 changed files with 4 additions and 0 deletions
|
@ -1120,6 +1120,10 @@ STATUSBAR_WMSize (STATUS_INFO *infoPtr, WORD flags)
|
|||
y = parent_rect.bottom - infoPtr->height;
|
||||
MoveWindow (infoPtr->Self, x, y, width, infoPtr->height, TRUE);
|
||||
STATUSBAR_SetPartBounds (infoPtr);
|
||||
#ifdef __REACTOS__
|
||||
parent_rect = infoPtr->parts[infoPtr->numParts - 1].bound;
|
||||
InvalidateRect(infoPtr->Self, &parent_rect, TRUE);
|
||||
#endif
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue