-
Notifications
You must be signed in to change notification settings - Fork 7
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
Unexpected mouse scroll behavior #25
Comments
I wasn't aware of this... that is indeed inconsistent. On a trackpad, using three fingers moves left and right, if that is helpful in any way. Unfortunately I don't think we can easily change this since we are using pyqtgraph as our plotting layer: http://www.pyqtgraph.org/documentation/mouse_interaction.html |
We could implement this, but this was remarkably more difficult to determine how than I thought it would be. Background information: We filter for wheel events in
That means, we intercept the wheel event, and we can redirect as necessary. Reading on the QWheelEvent docs, there is no property that indicates if the wheel event is horizontal or vertical, but there is the I'm going to reopen the issue; but given how I would dive into this, there would be some major testing/vetting needed in order to make sure we're not getting any undesirable side effects. |
I keep expecting the left/right mouse scroll (I'm using an Apple Magic Mouse) to move left and right, but it zooms instead.
The text was updated successfully, but these errors were encountered: