From 599b202c991b1f298fdd9fad310600bb00b2692e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 28 Feb 2025 11:04:45 +0530 Subject: [PATCH] Use common tooltip for ignore collections label --- src/calibre/devices/kobo/kobotouch_config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/calibre/devices/kobo/kobotouch_config.py b/src/calibre/devices/kobo/kobotouch_config.py index 02bcae1cbc..d8e64ab43d 100644 --- a/src/calibre/devices/kobo/kobotouch_config.py +++ b/src/calibre/devices/kobo/kobotouch_config.py @@ -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)