]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/Treebook.py
removed WXWIN_COMPATIBILITY_2_4 from common and wxMSW files (patch 1675546)
[wxWidgets.git] / wxPython / demo / Treebook.py
index fded8080a5112d0d0a3548afa51a10e84b31bc75..ec3b1d1020dcc51942c7e41609843e08854fca77 100644 (file)
@@ -60,13 +60,14 @@ class TestTB(wx.Treebook):
         self.Bind(wx.EVT_TREEBOOK_PAGE_CHANGED, self.OnPageChanged)
         self.Bind(wx.EVT_TREEBOOK_PAGE_CHANGING, self.OnPageChanging)
 
+        # This is a workaround for a sizing bug on Mac...
         wx.FutureCall(100, self.AdjustSize)
 
     def AdjustSize(self):
-        print self.GetTreeCtrl().GetBestSize()
+        #print self.GetTreeCtrl().GetBestSize()
         self.GetTreeCtrl().InvalidateBestSize()
         self.SendSizeEvent()
-        print self.GetTreeCtrl().GetBestSize()
+        #print self.GetTreeCtrl().GetBestSize()
         
 
     def makeColorPanel(self, color):