From f2f25adbaa955116e0ec5de3460290ee2868e713 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 9 Jun 2017 22:23:59 +0530 Subject: [PATCH] Use a bookmark icon for the saved searches button, since now it is not just for adding --- src/calibre/gui2/layout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/layout.py b/src/calibre/gui2/layout.py index 527ce64f17..f822fe4536 100644 --- a/src/calibre/gui2/layout.py +++ b/src/calibre/gui2/layout.py @@ -268,7 +268,7 @@ class SearchBar(QWidget): # {{{ )) x.setCursor(Qt.PointingHandCursor) x.setPopupMode(x.InstantPopup) - x.setIcon(QIcon(I("plus.png"))) + x.setIcon(QIcon(I("bookmarks.png"))) l.addWidget(x) x.setVisible(not tweaks['show_saved_search_box'])