From 9ed153bcb62a9384eec4af94abb4ead19c10803d Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Fri, 11 Feb 2022 08:45:57 -0500 Subject: [PATCH] Less gap below results view --- piker/ui/_search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piker/ui/_search.py b/piker/ui/_search.py index 1a74f59d..dc86816e 100644 --- a/piker/ui/_search.py +++ b/piker/ui/_search.py @@ -184,7 +184,7 @@ class CompleterView(QTreeView): # inclusive of search bar and header "rows", in pixel terms. if row_px > 0: window_h = self.window().height() - rows = ceil(window_h / row_px) - 6 + rows = ceil(window_h / row_px) - 3 else: rows = 16