From aedad63af3b6db6b09c709cb84e5eee6f37b67c6 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 9 Jan 2013 13:06:35 +0530 Subject: [PATCH] ... --- src/calibre/gui2/layout.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/calibre/gui2/layout.py b/src/calibre/gui2/layout.py index df277aa13c..6563059821 100644 --- a/src/calibre/gui2/layout.py +++ b/src/calibre/gui2/layout.py @@ -201,6 +201,7 @@ class SearchBar(QWidget): # {{{ x.setObjectName("search") x.setToolTip(_("

Search the list of books by title, author, publisher, " "tags, comments, etc.

Words separated by spaces are ANDed")) + x.setMinimumContentsLength(10) l.addWidget(x) self.search_button = QToolButton() @@ -225,7 +226,7 @@ class SearchBar(QWidget): # {{{ x = parent.saved_search = SavedSearchBox(self) x.setMaximumSize(QSize(150, 16777215)) - x.setMinimumContentsLength(15) + x.setMinimumContentsLength(10) x.setObjectName("saved_search") l.addWidget(x)