Use common tooltip for ignore collections label

This commit is contained in:
Kovid Goyal 2025-02-28 11:04:45 +05:30
parent 684a57ccb3
commit 599b202c99
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -539,6 +539,7 @@ class CollectionsGroupBox(DeviceOptionsGroupBox):
self.ignore_collections_names_edit.setToolTip(_('List the names of collections to be ignored by '
'the collection management. The collections listed '
'will not be changed. Names are separated by commas.'))
self.ignore_collections_names_label.setToolTip(self.ignore_collections_names_edit.toolTip())
self.ignore_collections_names_edit.setText(device.get_pref('ignore_collections_names'))
self.options_layout.addWidget(self.use_collections_columns_checkbox, 1, 0, 1, 1)