Hello,
it seems to me that there is a small mistake in the
AbstractImageZoomInteractor class:
The value dy is calculated, then modified to guarantee for a minimum
value of |dy|>15.
There are two cases to this, dy less than 0 or dy greater than 0,
however, in the former case dy is set to 15 instead of -15 if dy>-5 (and
of course dy < 0.
To sum things up: I believe line 117 should read
dy = (dy > -5) ? -15 : dy - 10;
instead of
dy = (dy > -5) ? 15 : dy - 10;
Regards
-Urs
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]