mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-12-16 01:30:07 +01:00
Merge pull request #2788 from jmoraleda/auinotebook-warning-fix
Add non-zero width and height to default tab size to avoid wxWidgets warning
This commit is contained in:
@@ -926,7 +926,7 @@ class AuiTabContainer(object):
|
|||||||
self._tab_close_buttons = []
|
self._tab_close_buttons = []
|
||||||
self._click_tab = None
|
self._click_tab = None
|
||||||
|
|
||||||
self._rect = wx.Rect()
|
self._rect = wx.Rect(0, 0, 1, 1)
|
||||||
self._auiNotebook = auiNotebook
|
self._auiNotebook = auiNotebook
|
||||||
|
|
||||||
self.AddButton(AUI_BUTTON_LEFT, wx.LEFT, name="Scroll Left")
|
self.AddButton(AUI_BUTTON_LEFT, wx.LEFT, name="Scroll Left")
|
||||||
|
|||||||
Reference in New Issue
Block a user