Prevent mouse cursor from showing on short, unintentional flicks

This commit is contained in:
Your Name
2025-03-28 13:35:38 +00:00
parent f56c3edd72
commit 464446e388
7 changed files with 118 additions and 9 deletions

View File

@@ -57,6 +57,9 @@ def conf_parsing(self):
opts = p('font_size 11.37', 'clear_all_shortcuts y', 'color23 red')
self.ae(opts.font_size, 11.37)
self.ae(opts.mouse_hide_wait, 0 if is_macos else 3)
self.ae(opts.mouse_show_wait, 0)
self.ae(opts.mouse_show_threshold, 40)
self.ae(opts.mouse_scroll_show, True)
self.ae(opts.color23, Color(255, 0, 0))
self.assertFalse(opts.keyboard_modes[''].keymap)
opts = p('clear_all_shortcuts y', 'map f1 next_window')