From 00b21d88aa12fc9bf6d350a9aae91dcfcfc24a4a Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Tue, 15 Oct 2019 17:18:08 -0300 Subject: [PATCH] [window] resizing combos after a selection --- bauh/view/qt/window.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bauh/view/qt/window.py b/bauh/view/qt/window.py index 71c1c6b8..64641c26 100755 --- a/bauh/view/qt/window.py +++ b/bauh/view/qt/window.py @@ -388,10 +388,12 @@ class ManageWindow(QWidget): def _handle_type_filter(self, idx: int): self.type_filter = self.combo_filter_type.itemData(idx) + self.combo_filter_type.adjustSize() self.apply_filters_async() def _handle_category_filter(self, idx: int): self.category_filter = self.combo_categories.itemData(idx) + self.combo_categories.adjustSize() self.apply_filters_async() def _notify_model_data_change(self):