From 66cae5755051490e360931b516ba0329a3bd19b5 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 20 Jun 2017 17:34:17 +0530 Subject: [PATCH] Fix #1698925 [Search box could have more space and button has border](https://bugs.launchpad.net/calibre/+bug/1698925) --- src/calibre/gui2/tag_browser/ui.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/calibre/gui2/tag_browser/ui.py b/src/calibre/gui2/tag_browser/ui.py index 6665931ea6..cd5d987667 100644 --- a/src/calibre/gui2/tag_browser/ui.py +++ b/src/calibre/gui2/tag_browser/ui.py @@ -399,6 +399,7 @@ class TagBrowserBar(QWidget): # {{{ ac.triggered.connect(self.set_focus_to_find_box) self.search_button = QToolButton() + self.search_button.setAutoRaise(True) self.search_button.setCursor(Qt.PointingHandCursor) self.search_button.setIcon(QIcon(I('search.png'))) self.search_button.setToolTip(_('Find the first/next matching item'))