]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/wx/lib/mixins/listctrl.py
Fix DrawHeaderButton
[wxWidgets.git] / wxPython / wx / lib / mixins / listctrl.py
index 09972aa4ea0756ddd0802b63ce28f0268a1f9691..cac86a09270e0e5bddc625d9a72282da897a0feb 100644 (file)
@@ -248,6 +248,9 @@ class ListCtrlAutoWidthMixin:
         
         if not self:  # avoid a PyDeadObject error
             return
+
+        if self.GetSize().height < 32:
+            return  # avoid an endless update bug when the height is small.
         
         numCols = self.GetColumnCount()
         if numCols == 0: return # Nothing to resize.