From: Robin Dunn Date: Mon, 15 Apr 2002 17:30:02 +0000 (+0000) Subject: Some updates for 2.3.3 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d6021a049091f3fa72dba04d84df43289ddcb974 Some updates for 2.3.3 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15140 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wxPython/lib/editor/editor.py b/wxPython/wxPython/lib/editor/editor.py index e02d521f46..3f7c57ae88 100644 --- a/wxPython/wxPython/lib/editor/editor.py +++ b/wxPython/wxPython/lib/editor/editor.py @@ -449,7 +449,7 @@ class wxEditor(wxScrolledWindow): self.MouseToCol(event.GetX()) def OnMotion(self, event): - if event.LeftIsDown(): + if event.LeftIsDown() and self.HasCapture(): self.Selecting = true self.MouseToCursor(event) self.SelectUpdate() @@ -462,6 +462,9 @@ class wxEditor(wxScrolledWindow): self.CaptureMouse() def OnLeftUp(self, event): + if not self.HasCapture(): + return + if self.SelectEnd is None: self.OnClick() else: