[PATCH resend 1/2] comctl32/listbox: Don't try to paint non-visible items for multi-column listboxes

Gabriel Ivăncescu gabrielopcode at gmail.com
Thu May 30 05:42:18 CDT 2019


Signed-off-by: Gabriel Ivăncescu <gabrielopcode at gmail.com>
Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
---

Although these were reviewed and signed off by Nikolay, they slipped through
the cracks, so they have been resent. I hope that's not an issue.

 dlls/comctl32/listbox.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dlls/comctl32/listbox.c b/dlls/comctl32/listbox.c
index e71b34d..8fd556c 100644
--- a/dlls/comctl32/listbox.c
+++ b/dlls/comctl32/listbox.c
@@ -1148,6 +1148,7 @@ static LRESULT LISTBOX_Paint( LB_DESCR *descr, HDC hdc )
             rect.right += descr->column_width;
             rect.top = 0;
             col_pos = descr->page_size - 1;
+            if (rect.left >= descr->width) break;
         }
         else
         {
-- 
2.21.0




More information about the wine-devel mailing list