From: Robin Dunn Date: Fri, 7 Jun 2002 05:39:15 +0000 (+0000) Subject: Only catch double click on wxMSW X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1b7a14e44d456bc32cb0a4ed2bd8e047bf68a69c?ds=inline Only catch double click on wxMSW git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15771 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wxPython/lib/buttons.py b/wxPython/wxPython/lib/buttons.py index 3098dc6590..c0e6dfb8f0 100644 --- a/wxPython/wxPython/lib/buttons.py +++ b/wxPython/wxPython/lib/buttons.py @@ -79,7 +79,8 @@ class wxGenButton(wxPyControl): EVT_LEFT_DOWN(self, self.OnLeftDown) EVT_LEFT_UP(self, self.OnLeftUp) - EVT_LEFT_DCLICK(self, self.OnLeftDown) + if wxPlatform == '__WXMSW__': + EVT_LEFT_DCLICK(self, self.OnLeftDown) EVT_MOTION(self, self.OnMotion) EVT_SET_FOCUS(self, self.OnGainFocus) EVT_KILL_FOCUS(self, self.OnLoseFocus)