Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scroll horizontally with shift + mouse scroll wheel #816

Merged
merged 1 commit into from
Jan 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions pdfarranger/pdfarranger.py
Original file line number Diff line number Diff line change
Expand Up @@ -2052,6 +2052,9 @@ def sw_button_press_event(self, _scrolledwindow, event):

def sw_scroll_event(self, _scrolledwindow, event):
"""Manages mouse scroll events in scrolledwindow"""
if event.state & Gdk.ModifierType.SHIFT_MASK:
# Scroll horizontally
return
if event.direction == Gdk.ScrollDirection.SMOOTH:
dy = event.get_scroll_deltas()[2]
if dy < 0:
Expand Down