Skip, Skip, Skip

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28253 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2004-07-16 00:12:48 +00:00
parent 5a319c5cc1
commit 1fa4b13e1c

View File

@ -314,6 +314,7 @@ class GridColMover(wx.EvtHandler):
self.colWin = ColDragWindow(self.grid,colImg,col)
self.colWin.Show(False)
self.lwin.CaptureMouse()
evt.Skip()
def OnRelease(self,evt):
if self.isDragging:
@ -437,6 +438,7 @@ class GridRowMover(wx.EvtHandler):
self.rowWin = RowDragWindow(self.grid,rowImg,row)
self.rowWin.Show(False)
self.lwin.CaptureMouse()
evt.Skip()
def OnRelease(self,evt):
if self.isDragging: