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

Fixing display of scroll mode for wheel gaze #1485

Merged
merged 2 commits into from
Jul 16, 2024
Merged
Changes from 1 commit
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
4 changes: 3 additions & 1 deletion plugin/mouse/mouse.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,12 @@ def mouse_scroll_stop():

def mouse_gaze_scroll():
"""Starts gaze scroll"""
# this calls stop_scroll, which resets continuous_scroll_mode
start_cursor_scrolling()

global continuous_scroll_mode
continuous_scroll_mode = "gaze scroll"

start_cursor_scrolling()
if not settings.get("user.mouse_hide_mouse_gui"):
gui_wheel.show()

Expand Down