From d6021a049091f3fa72dba04d84df43289ddcb974 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 15 Apr 2002 17:30:02 +0000 Subject: [PATCH] Some updates for 2.3.3 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15140 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/wxPython/lib/editor/editor.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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: -- 2.50.0