From c5beecf8a1a1b3ffe5c24e68c57dc5d2ac4c1274 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sun, 24 Apr 2022 17:09:58 -0400 Subject: [PATCH] Drop cursor debounce delay, decrease rate limit --- piker/ui/_cursor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/piker/ui/_cursor.py b/piker/ui/_cursor.py index 43207b9f..8f18fe45 100644 --- a/piker/ui/_cursor.py +++ b/piker/ui/_cursor.py @@ -43,8 +43,8 @@ log = get_logger(__name__) # latency (in terms of perceived lag in cross hair) so really be sure # there's an improvement if you want to change it! -_mouse_rate_limit = 120 # TODO; should we calc current screen refresh rate? -_debounce_delay = 1 / 40 +_mouse_rate_limit = 60 # TODO; should we calc current screen refresh rate? +_debounce_delay = 0 _ch_label_opac = 1