]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/samples/simple/simple.py
removed a debugging print
[wxWidgets.git] / wxPython / samples / simple / simple.py
index 95df6d5073e8cc83a94810967f6e7d241dee5555..ee27c45d711ed1b4a2fee2cae63496f9c015babd 100644 (file)
@@ -13,7 +13,8 @@ class MyFrame(wx.Frame):
     and has a simple menu.
     """
     def __init__(self, parent, title):
-        wx.Frame.__init__(self, parent, -1, title, size=(350, 200))
+        wx.Frame.__init__(self, parent, -1, title,
+                          pos=(150, 150), size=(350, 200))
 
         # Create the menubar
         menuBar = wx.MenuBar()
@@ -70,8 +71,13 @@ class MyFrame(wx.Frame):
         print "Having fun yet?"
 
 
-app = wx.PySimpleApp()
-frame = MyFrame(None, "Simple wxPython App")
-frame.Show(True)
+class MyApp(wx.App):
+    def OnInit(self):
+        frame = MyFrame(None, "Simple wxPython App")
+        frame.Show(True)
+        self.SetTopWindow(frame)
+        return True
+        
+app = MyApp(True)
 app.MainLoop()