DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR Pending]

Link: http://www.fltk.org/str.php?L2323
Version: 1.3-current
Fix Version: 1.3-current (r7213)


I should add: the actual solution used to solve the mousewheel clicks
(checked in as r7213) is different than the patch here.

The patch scaled the clicks by 10.0, but it was found this made
scrolling a bit too fast due to Apple's acceleration. Also, some
mice (Ian's Wacom with wheel on puck) stepped in increments of 3.0
instead of 0.1.

So the final approach used was to force (1.0 > abs(deltaX) > 0.0) to 1,
keeping the sign intact.

Or as Ian put it, regarding deltaX:

        0 -> 0
        0 < x <= 1.0 -> 1
        1.0 < x -> x


Link: http://www.fltk.org/str.php?L2323
Version: 1.3-current
Fix Version: 1.3-current (r7213)

_______________________________________________
fltk-bugs mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-bugs

Reply via email to