From c1fcc7a9b31d2d9d6acca16e9d52eb3d423a3614 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 7 Apr 2004 19:49:36 +0000 Subject: [PATCH] Use wx.CLIP_CHILDREN on the splitter windows git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26651 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/demo/Main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wxPython/demo/Main.py b/wxPython/demo/Main.py index ddce684930..e04c32b231 100644 --- a/wxPython/demo/Main.py +++ b/wxPython/demo/Main.py @@ -464,8 +464,8 @@ class wxPythonDemo(wx.Frame): self.Centre(wx.BOTH) self.CreateStatusBar(1, wx.ST_SIZEGRIP) - splitter = wx.SplitterWindow(self, -1) - splitter2 = wx.SplitterWindow(splitter, -1) ##, size=(20,20)) + splitter = wx.SplitterWindow(self, -1, style=wx.CLIP_CHILDREN) + splitter2 = wx.SplitterWindow(splitter, -1, style=wx.CLIP_CHILDREN) # Set up a log on the View Log Notebook page self.log = wx.TextCtrl(splitter2, -1, -- 2.50.0