Since OS X supports the "natural scrolling", my applications works wrong. The natural scrolling is made for scroll panes, which I really like. But, when I want to zoom in/out, it works wrong. So, what I want to do is check the scroll method for OS X.
If it is "natural" I'll take the opposite of the scroll values from MouseWheelEvent.getWheelRotation()
to make my zoom in/out behavior feel correct.
So, in short: How to know if OS X uses natural scrolling or not?
un-natural scrolling is made for scroll panes
, what/how is different int value fromScrollableUnitXxx
andScrollableTracksXxx
against/to comparing with another native OS – Chacon