From a8990bd4433403d5769323c5e243f5ba0c4e050f Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 8 Jan 2007 23:54:11 +0000 Subject: [PATCH] don't use default style git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44176 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/demo/AUI_MDI.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wxPython/demo/AUI_MDI.py b/wxPython/demo/AUI_MDI.py index ec2469c5b1..a8d8ab4ff3 100644 --- a/wxPython/demo/AUI_MDI.py +++ b/wxPython/demo/AUI_MDI.py @@ -9,7 +9,8 @@ class ParentFrame(wx.aui.AuiMDIParentFrame): def __init__(self, parent): wx.aui.AuiMDIParentFrame.__init__(self, parent, -1, title="AuiMDIParentFrame", - size=(640,480)) + size=(640,480), + style=wx.DEFAULT_FRAME_STYLE) self.count = 0 mb = self.MakeMenuBar() self.SetMenuBar(mb)