]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/run.py
Also add a bool() function if running on a too old Python.
[wxWidgets.git] / wxPython / demo / run.py
index bb1ea864437a8db98fbb5cb75d123fb353e303f7..f420f705d95620ee989975c31e3a94fa505d74e7 100755 (executable)
@@ -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,8 +93,6 @@ 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))
                 frame.Bind(wx.EVT_BUTTON, self.OnButton, b)
             else: