Kaydet (Commit) 72703332 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

fdo#63547: Fix wheel/trackpad scrolling on OS X: Single char copy/paste error

Change-Id: I06faa28c25e976d0c9e072858cbe37093a61d38d
üst e71de1d3
......@@ -847,7 +847,7 @@ private:
if( aEvent.mnDelta == 0 )
aEvent.mnDelta = aEvent.mnNotchDelta;
aEvent.mbHorz = TRUE;
aEvent.mnScrollLines = dY > 0 ? dX/WHEEL_EVENT_FACTOR : -dX/WHEEL_EVENT_FACTOR;
aEvent.mnScrollLines = dX > 0 ? dX/WHEEL_EVENT_FACTOR : -dX/WHEEL_EVENT_FACTOR;
if( aEvent.mnScrollLines == 0 )
aEvent.mnScrollLines = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment