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

Fix Side scroll request in the wheelEvent with the shift modifier in qt5 mode #1472

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions labelme/widgets/canvas.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import imgviz
import platform
from qtpy import QtCore
from qtpy import QtGui
from qtpy import QtWidgets
Expand Down Expand Up @@ -920,6 +921,10 @@ def wheelEvent(self, ev):
# with Ctrl/Command key
# zoom
self.zoomRequest.emit(delta.y(), ev.pos())
elif QtCore.Qt.ShiftModifier == int(mods) and platform.system() != "Darwin":
# side scroll
self.scrollRequest.emit(delta.y(), QtCore.Qt.Horizontal)
self.scrollRequest.emit(delta.x(), QtCore.Qt.Vertical)
else:
# scroll
self.scrollRequest.emit(delta.x(), QtCore.Qt.Horizontal)
Expand Down