Well, actually, normally this is not a bug, but an improvemend of the mightymouse...
Here is the Apple doc :
In [
developer.apple.com] :
(...)
kEventMouseScroll is different from kEventMouseWheelMoved in these ways:
- it specifies a scroll amount in both the X and Y axis in the same event.
- the scroll amount is specified in pixels, not in lines.
(...)
Do not multiply this by your line height the same way you would
* for the kEventParamMouseWheelDelta parameter of a
* kEventMouseWheelMoved event.
(...)
Which means that the other mice scroll by line (1 line = 120 pixels says the Apple doc, i don't know why), and the mightymouse scrolls by pixels.
The important thing I think is that the same _finger movement_ scrolls the same amount on both types of mice... Is this the case ? (I cannot tell, since I don't own a mightymouse... ;-§)
Thanks,