diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mac.m | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -635,9 +635,9 @@ handleCrossing(PuglWrapperView* view, NSEvent* event, const PuglEventType type) double dx = -[event scrollingDeltaX]; double dy = [event scrollingDeltaY]; - if (![event hasPreciseScrollingDeltas]) { - dx *= 10.0; - dy *= 10.0; + if ([event hasPreciseScrollingDeltas]) { + dx /= 20.0; + dy /= 20.0; } const PuglScrollDirection dir = |