From: Kevin A. <ka...@us...> - 2004-05-01 06:09:08
|
Update of /cvsroot/pythoncard/PythonCard/samples/widgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28900 Modified Files: widgets.py Log Message: added event.skip to mouseDown and mouseUp handlers as a event bug fix Index: widgets.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/widgets/widgets.py,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** widgets.py 27 Apr 2004 06:07:48 -0000 1.36 --- widgets.py 1 May 2004 06:09:00 -0000 1.37 *************** *** 190,193 **** --- 190,194 ---- print "drag y" self.yOp = DRAG_Y + event.skip() def on_mouseDrag(self, event): *************** *** 237,240 **** --- 238,242 ---- target.SetSize((newWidth, newHeight)) #target._delegate.SetDimensions(xOff, yOff, newWidth, newHeight) + event.skip() |