Same as MR !2394
Signed-off-by: Zhao Yi zhaoyi@uniontech.com
-- v5: comctl32/listview: Set bNoItemMetrics to TRUE in LISTVIEW_DeleteAllItems().
From: Zhao Yi zhaoyi@uniontech.com
Reset bNoItemMetrics to TRUE in function LISTVIEW_DeleteAllItems to arrange
listview items in the correct position.
Signed-off-by: Zhao Yi zhaoyi@uniontech.com --- dlls/comctl32/listview.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c index 750e447dbef..7972be9669d 100644 --- a/dlls/comctl32/listview.c +++ b/dlls/comctl32/listview.c @@ -5590,6 +5590,7 @@ static BOOL LISTVIEW_DeleteAllItems(LISTVIEW_INFO *infoPtr, BOOL destroy) LISTVIEW_UpdateScroll(infoPtr); } LISTVIEW_InvalidateList(infoPtr); + infoPtr->bNoItemMetrics = TRUE;
return TRUE; }
I think Nikolay meant changing the message subject.
On Thu Jul 27 01:08:47 2023 +0000, Zhiyi Zhang wrote:
I think Nikolay meant changing the message subject.
I see and I will change the subject later, Thank you!