From ce87b11fbd642e688f0856e055fb77257eff15c1 Mon Sep 17 00:00:00 2001 From: Sam <51455162+samuellieberman@users.noreply.github.com> Date: Mon, 22 Jul 2024 07:59:43 -0600 Subject: [PATCH] Fix #2 for Add Library Tags panel (#328) The "Add Tags" panel displays all tags when no search has been performed. Modifies the "Add Library Tags panel" to be the same. --- tagstudio/src/qt/modals/tag_search.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tagstudio/src/qt/modals/tag_search.py b/tagstudio/src/qt/modals/tag_search.py index 005391f2..896f634f 100644 --- a/tagstudio/src/qt/modals/tag_search.py +++ b/tagstudio/src/qt/modals/tag_search.py @@ -84,6 +84,7 @@ class TagSearchPanel(PanelWidget): self.root_layout.addWidget(self.search_field) self.root_layout.addWidget(self.scroll_area) + self.update_tags("") # def reset(self): # self.search_field.setText('')