[Python-checkins] python/dist/src/Mac/Tools/IDE Wcontrols.py, 1.14, 1.15

jackjansen at users.sourceforge.net jackjansen at users.sourceforge.net
Fri Jul 16 00:08:36 CEST 2004


Update of /cvsroot/python/python/dist/src/Mac/Tools/IDE
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2905

Modified Files:
	Wcontrols.py 
Log Message:
After more than two years of puzzlement Jurjen Bos found the reason for
the double-scroll problem: when you pass a tracker function to TrackControl
you shouldn't call your hit function again afterwards. Fixes #711989.


Index: Wcontrols.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Tools/IDE/Wcontrols.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** Wcontrols.py	30 Nov 2002 00:01:27 -0000	1.14
--- Wcontrols.py	15 Jul 2004 22:08:33 -0000	1.15
***************
*** 381,386 ****
  				self._hit(part)
  		part = self._control.TrackControl(point, hitter)
- 		if part:
- 			self._hit(part)
  	
  	def _hit(self, part):
--- 381,384 ----



More information about the Python-checkins mailing list