From 73a02d54b785d677805944711cf7a9ba073dad29 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sun, 11 Sep 2022 17:35:40 -0400 Subject: [PATCH] Down size the slots bar by .9 --- piker/ui/_forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piker/ui/_forms.py b/piker/ui/_forms.py index f62363f3..a6cddae9 100644 --- a/piker/ui/_forms.py +++ b/piker/ui/_forms.py @@ -644,7 +644,7 @@ def mk_fill_status_bar( # TODO: calc this height from the ``ChartnPane`` chart_h = round(parent_pane.height() * 5/8) - bar_h = chart_h * 0.375 + bar_h = chart_h * 0.375*0.9 # TODO: once things are sized to screen bar_label_font_size = label_font_size or _font.px_size - 2