From aa13031cc010f3bb8814cf0574fa9e9201dc1b09 Mon Sep 17 00:00:00 2001 From: Charles Haley Date: Sun, 8 Jan 2023 16:03:06 +0000 Subject: [PATCH] Sorry, missed a place where I needed to clear the search error icon. --- src/calibre/gui2/search_box.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/calibre/gui2/search_box.py b/src/calibre/gui2/search_box.py index 5a42cd62f7..4f2b5dc3ff 100644 --- a/src/calibre/gui2/search_box.py +++ b/src/calibre/gui2/search_box.py @@ -176,6 +176,7 @@ class SearchBox2(QComboBox): # {{{ def normalize_state(self): self.setToolTip(self.tool_tip_text) self.line_edit.setStyleSheet('') + self.show_parse_error_action(False) def text(self): return self.currentText()