GNOME Bugzilla – Bug 386313
Magnifier smooth panning not working
Last modified: 2006-12-18 16:04:09 UTC
Enable smooth panning. Notice the magnifier no longer tracks focus. I added the following check for the smooth_pan instance variable in ZoomMove. Before it was always using _panTo and never using _hopTop on a focus change, regardless of smooth panning option. if start_coord and self.smooth_pan: self._panTo(end_coord, start_coord) else: self._hopTo(end_coord) This fixes part of the problem by allowing the magnifier to work when panning if off.
Eitan, make this priority #1. Test all the magnifier options thoroughly too to make sure there weren't any other last minute regressions before the commit to CVS.
I fixed this when fixing bug #386007.