X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4b7887a953e5d02b240042510bcfa10f5f2ce41a..19fc48c61d88e6a2e3af46ed8bf1942a0de0a02e:/wxPython/demo/SplitTree.py diff --git a/wxPython/demo/SplitTree.py b/wxPython/demo/SplitTree.py index 0f7b4da9e4..bf88d3a60d 100644 --- a/wxPython/demo/SplitTree.py +++ b/wxPython/demo/SplitTree.py @@ -48,10 +48,6 @@ class TestValueWindow(gizmos.TreeCompanionWindow): def __init__(self, parent, style=0): gizmos.TreeCompanionWindow.__init__(self, parent, -1, style=style) self.SetBackgroundColour("WHITE") - self.Bind(wx.EVT_ERASE_BACKGROUND, self.OEB) - - def OEB(self, evt): - pass # This method is called to draw each item in the value window def DrawItem(self, dc, itemId, rect): @@ -85,7 +81,7 @@ class TestValueWindow(gizmos.TreeCompanionWindow): class TestPanel(wx.Panel): def __init__(self, parent, log): - wx.Panel.__init__(self, parent, -1) + wx.Panel.__init__(self, parent, -1, size=(640,480)) self.log = log scroller = gizmos.SplitterScrolledWindow( @@ -114,9 +110,8 @@ class TestPanel(wx.Panel): sizer = wx.BoxSizer(wx.VERTICAL) sizer.Add(scroller, 1, wx.EXPAND|wx.ALL, 25) - self.SetAutoLayout(True) self.SetSizer(sizer) - + self.Layout() #----------------------------------------------------------------------