[PATCH 0/1] MR2413: comctl32: Fix the problem that listview cannot display all files.
Log: The flag that bNoItemMetrics should be reset to TRUE after calling LISTVIEW_DeleteAllItems(). Signed-off-by: Zhao Yi <zhaoyi(a)uniontech.com> -- https://gitlab.winehq.org/wine/wine/-/merge_requests/2413
From: Zhao Yi <zhaoyi(a)uniontech.com> Log: The flag that bNoItemMetrics needs to be reset to TRUE after call func LISTVIEW_DeleteAllItems. Signed-off-by: Zhao Yi <zhaoyi(a)uniontech.com> --- dlls/comctl32/listview.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c index 750e447dbef..026884372aa 100644 --- a/dlls/comctl32/listview.c +++ b/dlls/comctl32/listview.c @@ -5590,7 +5590,7 @@ static BOOL LISTVIEW_DeleteAllItems(LISTVIEW_INFO *infoPtr, BOOL destroy) LISTVIEW_UpdateScroll(infoPtr); } LISTVIEW_InvalidateList(infoPtr); - + infoPtr->bNoItemMetrics = TRUE; return TRUE; } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/2413
Update commit message. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/2413#note_27001
On Thu Mar 16 02:05:37 2023 +0000, Zhao Yi wrote:
Update commit message. The commit message in the actual commit also needs to be updated, not just the message for this merge request. You can update the commit message by using "git commit --amend", and then force push to the same branch. You don't need to close the old merge request and open a new one.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/2413#note_27008
participants (3)
-
Zhao Yi -
Zhao Yi (@Zhaoyi) -
Zhiyi Zhang (@zhiyi)