Filter highlights typo

This commit is contained in:
413Michele 2024-03-30 17:51:57 +01:00
parent e85af248a6
commit 15c3915cc1

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)