Update Column icons tooltip information

I added some info on the difference between "with text" and "without text" icons, as I couldn't understand the effect that option had before testing it
This commit is contained in:
413Michele 2022-02-04 11:30:41 +01:00 committed by GitHub
parent a7782679fe
commit c992418341
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -413,6 +413,9 @@ class RuleEditor(QDialog): # {{{
self.kind_box.addItem(tt, t) self.kind_box.addItem(tt, t)
l.addWidget(self.kind_box, 3, 0) l.addWidget(self.kind_box, 3, 0)
self.kind_box.setToolTip(textwrap.fill(_( self.kind_box.setToolTip(textwrap.fill(_(
'Choosing icon with text will add an icon to the left of the'
' column content, choosing icon with no text will hide'
' the column content and leave only the icon.'
'If you choose composed icons and multiple rules match, then all the' 'If you choose composed icons and multiple rules match, then all the'
' matching icons will be combined, otherwise the icon from the' ' matching icons will be combined, otherwise the icon from the'
' first rule to match will be used.'))) ' first rule to match will be used.')))