29 Aug
2023
29 Aug
'23
3:55 a.m.
Zhiyi Zhang (@zhiyi) commented about dlls/comctl32/status.c:
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); + if(y != infoPtr->y) + InvalidateRect(infoPtr->Self, NULL, FALSE); + else + { + update_rect.left = min(infoPtr->width-HORZ_GAP, width);
Add space before and after the minus sign. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3667#note_43639