]> git.saurik.com Git - wxWidgets.git/commitdiff
no need to call SetAutoLayout
authorRobin Dunn <robin@alldunn.com>
Mon, 18 Apr 2005 22:23:47 +0000 (22:23 +0000)
committerRobin Dunn <robin@alldunn.com>
Mon, 18 Apr 2005 22:23:47 +0000 (22:23 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33736 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/demo/Dialog.py

index 8897c26e86a40dd35631bda2bea879b28e7a2d7e..756c730020962e07cd6cd742e535d277fb8c4b4f 100644 (file)
@@ -82,7 +82,6 @@ class TestDialog(wx.Dialog):
         sizer.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5)
 
         self.SetSizer(sizer)
-        self.SetAutoLayout(True)
         sizer.Fit(self)
 
 #---------------------------------------------------------------------------