X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/71ed12a01ef4ffbe42e11a5b65064ba6dafb87f0..ab1bfcc1a175bc773199c2b64c87e737ad3b9d63:/wxPython/demo/run.py?ds=sidebyside diff --git a/wxPython/demo/run.py b/wxPython/demo/run.py index bb1ea86443..a267dfd089 100755 --- a/wxPython/demo/run.py +++ b/wxPython/demo/run.py @@ -64,6 +64,7 @@ class RunDemoApp(wx.App): menuBar.Append(menu, "&File") ns = {} + ns['wx'] = wx ns['app'] = self ns['module'] = self.demoModule ns['frame'] = frame @@ -92,9 +93,7 @@ class RunDemoApp(wx.App): frect = frame.otherWin.GetRect() p = wx.Panel(frame, -1) b = wx.Button(p, -1, " Exit ", (10,10)) - p.Fit() - #frame.SetClientSize(p.GetSize()) - frame.SetSize((200, 100)) + wx.CallAfter(frame.SetClientSize, (200, 100)) frame.Bind(wx.EVT_BUTTON, self.OnButton, b) else: # It was probably a dialog or something that is already