Add non-zero width and height to default tab size to avoid wxWidgets warning

This commit is contained in:
Jorge Moraleda
2025-09-03 12:02:32 -04:00
parent 1327ebdef9
commit 7572dd05da

View File

@@ -926,7 +926,7 @@ class AuiTabContainer(object):
self._tab_close_buttons = []
self._click_tab = None
self._rect = wx.Rect()
self._rect = wx.Rect(0, 0, 1, 1)
self._auiNotebook = auiNotebook
self.AddButton(AUI_BUTTON_LEFT, wx.LEFT, name="Scroll Left")