From 15c3915cc129c2352ca65f149c36a713a868f8a9 Mon Sep 17 00:00:00 2001 From: 413Michele <413Michele@users.noreply.github.com> Date: Sat, 30 Mar 2024 17:51:57 +0100 Subject: [PATCH] Filter highlights typo --- src/calibre/gui2/viewer/highlights.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/viewer/highlights.py b/src/calibre/gui2/viewer/highlights.py index 93d9f8482e..36562aa7a6 100644 --- a/src/calibre/gui2/viewer/highlights.py +++ b/src/calibre/gui2/viewer/highlights.py @@ -603,7 +603,7 @@ class HighlightsPanel(QWidget): h = QHBoxLayout() la = QLabel(_('Double click to jump to an entry')) 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) h.addWidget(la), h.addStretch(10), h.addWidget(b) l.addLayout(h)