This commit is contained in:
Kovid Goyal 2024-03-31 08:19:38 +05:30
commit bfce38e564
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -603,7 +603,7 @@ class HighlightsPanel(QWidget):
h = QHBoxLayout() h = QHBoxLayout()
la = QLabel(_('Double click to jump to an entry')) la = QLabel(_('Double click to jump to an entry'))
self.filter_button = b = QToolButton(self) self.filter_button = b = QToolButton(self)
b.setIcon(QIcon.ic('filter.png')), b.setToolTip(_('Show only highlights of a specific types')) b.setIcon(QIcon.ic('filter.png')), b.setToolTip(_('Show only highlights of specific types'))
b.clicked.connect(self.change_active_filter) b.clicked.connect(self.change_active_filter)
h.addWidget(la), h.addStretch(10), h.addWidget(b) h.addWidget(la), h.addStretch(10), h.addWidget(b)
l.addLayout(h) l.addLayout(h)