Skip to content

Commit

Permalink
Fixing display of scroll mode for wheel gaze (talonhub#1485)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradmajewski authored Jul 16, 2024
1 parent 9498ffc commit 5b43105
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugin/mouse/mouse.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,11 @@ def mouse_scroll_stop():
def mouse_gaze_scroll():
"""Starts gaze scroll"""
global continuous_scroll_mode
# this calls stop_scroll, which resets continuous_scroll_mode
start_cursor_scrolling()

continuous_scroll_mode = "gaze scroll"

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

Expand Down

0 comments on commit 5b43105

Please sign in to comment.