Skip to content

Commit 7dd753c

Browse files
committed
Fix reverse mouse scroll in the app switcher.
1 parent 89c8daf commit 7dd753c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/ui/appSwitcher/appSwitcher.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ AppSwitcher.prototype = {
345345
actor.set_reactive(false);
346346
if (event.get_scroll_direction() == Clutter.ScrollDirection.UP)
347347
this._previous();
348-
else
348+
else if (event.get_scroll_direction() == Clutter.ScrollDirection.DOWN)
349349
this._next();
350350
actor.set_reactive(true);
351351
}

0 commit comments

Comments
 (0)