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

View File

@ -208,7 +208,7 @@ class FilterDialog(Dialog):
def setup_ui(self): def setup_ui(self):
self.setWindowIcon(QIcon.ic('filter.png')) self.setWindowIcon(QIcon.ic('filter.png'))
self.l = l = QVBoxLayout(self) self.l = l = QVBoxLayout(self)
la = QLabel(_('Choose what kinds of highlights will be displayed below. If none are selected, no filtering is performed.')) la = QLabel(_('Choose what kinds of highlights will be displayed, below. If none are selected, no filtering is performed.'))
la.setWordWrap(True) la.setWordWrap(True)
l.addWidget(la) l.addWidget(la)
self.swatches = s = SwatchList(self.all_styles, self.show_only_styles, self) self.swatches = s = SwatchList(self.all_styles, self.show_only_styles, self)