]> git.saurik.com Git - wxWidgets.git/commitdiff
Only close the shell window if it still exists
authorRobin Dunn <robin@alldunn.com>
Fri, 5 Mar 2004 23:38:39 +0000 (23:38 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 5 Mar 2004 23:38:39 +0000 (23:38 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26108 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/demo/run.py

index fb9b70a80f7e7846281cb2ea224779f048827143..bb1ea864437a8db98fbb5cb75d123fb353e303f7 100755 (executable)
@@ -93,8 +93,8 @@ class RunDemoApp(wx.App):
                 p = wx.Panel(frame, -1)
                 b = wx.Button(p, -1, " Exit ", (10,10))
                 p.Fit()
-                frame.SetClientSize(p.GetSize())
-                #frame.SetSize((200, 100))
+                #frame.SetClientSize(p.GetSize())
+                frame.SetSize((200, 100))
                 frame.Bind(wx.EVT_BUTTON, self.OnButton, b)
             else:
                 # It was probably a dialog or something that is already
@@ -119,7 +119,8 @@ class RunDemoApp(wx.App):
             # Hook the close event of the test window so that we close
             # the shell at the same time
             def CloseShell(evt):
-                shell.Close()
+                if shell:
+                    shell.Close()
                 evt.Skip()
             frame.Bind(wx.EVT_CLOSE, CloseShell)