Some updates for 2.3.3

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15140 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2002-04-15 17:30:02 +00:00
parent 598d8cacef
commit d6021a0490

View File

@ -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: