]> git.saurik.com Git - wxWidgets.git/commitdiff
clip notebook children to help reduce flicker
authorRobin Dunn <robin@alldunn.com>
Mon, 14 Jun 2004 20:17:31 +0000 (20:17 +0000)
committerRobin Dunn <robin@alldunn.com>
Mon, 14 Jun 2004 20:17:31 +0000 (20:17 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27792 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wx/py/editor.py

index 671ede9e0b0e915e3350667529e6138f8e7a213f..be2f521b9c2c5addcb62f7c42fe07da972463f21 100644 (file)
@@ -365,7 +365,7 @@ class EditorNotebook(wx.Notebook):
 
     def __init__(self, parent):
         """Create EditorNotebook instance."""
-        wx.Notebook.__init__(self, parent, id=-1, style=wx.NO_FULL_REPAINT_ON_RESIZE)
+        wx.Notebook.__init__(self, parent, id=-1, style=wx.CLIP_CHILDREN)
         wx.EVT_NOTEBOOK_PAGE_CHANGING(self, self.GetId(),
                                       self.OnPageChanging)
         wx.EVT_NOTEBOOK_PAGE_CHANGED(self, self.GetId(),