mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
...
This commit is contained in:
parent
656f7f9644
commit
aedad63af3
@ -201,6 +201,7 @@ class SearchBar(QWidget): # {{{
|
|||||||
x.setObjectName("search")
|
x.setObjectName("search")
|
||||||
x.setToolTip(_("<p>Search the list of books by title, author, publisher, "
|
x.setToolTip(_("<p>Search the list of books by title, author, publisher, "
|
||||||
"tags, comments, etc.<br><br>Words separated by spaces are ANDed"))
|
"tags, comments, etc.<br><br>Words separated by spaces are ANDed"))
|
||||||
|
x.setMinimumContentsLength(10)
|
||||||
l.addWidget(x)
|
l.addWidget(x)
|
||||||
|
|
||||||
self.search_button = QToolButton()
|
self.search_button = QToolButton()
|
||||||
@ -225,7 +226,7 @@ class SearchBar(QWidget): # {{{
|
|||||||
|
|
||||||
x = parent.saved_search = SavedSearchBox(self)
|
x = parent.saved_search = SavedSearchBox(self)
|
||||||
x.setMaximumSize(QSize(150, 16777215))
|
x.setMaximumSize(QSize(150, 16777215))
|
||||||
x.setMinimumContentsLength(15)
|
x.setMinimumContentsLength(10)
|
||||||
x.setObjectName("saved_search")
|
x.setObjectName("saved_search")
|
||||||
l.addWidget(x)
|
l.addWidget(x)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user