-
-
Notifications
You must be signed in to change notification settings - Fork 294
various fixes for scroll wheel #413
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
base: main
Are you sure you want to change the base?
Conversation
*fix using scroll delta instead axis code *fix lost registering low res axis if it will be used *fix duplicate inverting direction of delta *make scroll behavior more responsive *fix and imprv logging
|
Seems to have fixed the issue where my MX Master 3's scroll wheel would suddenly become unresponsive. Thank you. |
| if (!_input_axis.has_value()) | ||
| return; | ||
|
|
||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What are these blank new lines for? 🤔
Here, and in lines 96, 135, etc.
| if (lowres_movement == 0) { | ||
| lowres_movement = hires_remainder > 0 ? 1 : -1; | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code style changes like these introduce unnecessary noise in the diff. I'd recommend removing them and keeping the diff focused on the actual behavior changes.
*fix using scroll delta instead axis code
*fix lost registering low res axis if it will be used *fix duplicate inverting direction of delta
*make scroll behavior more responsive
*fix and imprv logging