]> git.saurik.com Git - wxWidgets.git/commitdiff
Ensure the button still exists after the Notify before doing anything
authorRobin Dunn <robin@alldunn.com>
Thu, 4 May 2006 02:18:25 +0000 (02:18 +0000)
committerRobin Dunn <robin@alldunn.com>
Thu, 4 May 2006 02:18:25 +0000 (02:18 +0000)
with it.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39019 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wx/lib/buttons.py

index efb71b8e8a9a2dc4367922fa1f885fc1c303178d..e01fd4b55bbc0bad306ef0465b79bf2f8c552ead 100644 (file)
@@ -312,8 +312,9 @@ class GenButton(wx.PyControl):
             if not self.up:    # if the button was down when the mouse was released...
                 self.Notify()
             self.up = True
-            self.Refresh()
-            event.Skip()
+            if self:           # in case the button was destroyed in the eventhandler
+                self.Refresh()
+                event.Skip()
 
 
     def OnMotion(self, event):