From 02300efb59461612ab5e05bd6bc9183013b81477 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Wed, 9 Mar 2022 11:29:52 -0500 Subject: [PATCH] Use 12Hz as default fps throttle --- piker/ui/_display.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piker/ui/_display.py b/piker/ui/_display.py index 398a180c..b761b881 100644 --- a/piker/ui/_display.py +++ b/piker/ui/_display.py @@ -56,7 +56,7 @@ from ..log import get_logger log = get_logger(__name__) # TODO: load this from a config.toml! -_quote_throttle_rate: int = 6 + 16 # Hz +_quote_throttle_rate: int = 12 # Hz # a working tick-type-classes template