Also flatten the search highlights toggle button

This commit is contained in:
Kovid Goyal 2017-06-13 08:18:38 +05:30
parent dc8bac3b64
commit f2e479cfbb
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -230,6 +230,9 @@ class SearchBar(QFrame): # {{{
_('Do Quick Search (you can also press the Enter key)'))
x = parent.highlight_only_button = QToolButton(self)
x.setAutoRaise(True)
x.setText(_('Highlight'))
x.setToolButtonStyle(Qt.ToolButtonTextBesideIcon)
x.setIcon(QIcon(I('arrow-down.png')))
l.addWidget(x)