From d7d9488807359a103ec50dbd039dbbb82db8bd01 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 8 Feb 2024 14:26:02 +0530 Subject: [PATCH] ... --- src/calibre/gui2/dialogs/palette.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/calibre/gui2/dialogs/palette.py b/src/calibre/gui2/dialogs/palette.py index aec38b61e5..fce57d8ebe 100644 --- a/src/calibre/gui2/dialogs/palette.py +++ b/src/calibre/gui2/dialogs/palette.py @@ -138,7 +138,8 @@ class PaletteWidget(QWidget): uc.setChecked(bool(gprefs[f'{mode_name}_palette_name'])) uc.toggled.connect(self.use_custom_toggled) self.import_system_button = b = QPushButton(_('Import &system colors')) - b.setToolTip(_('Set the custom colors to colors queried from the system')) + b.setToolTip(textwrap.fill(_('Set the custom colors to colors queried from the system.' + ' Note that this will use colors from whatever the current system palette is, dark or light.'))) b.clicked.connect(self.import_system_colors) h.addWidget(uc), h.addStretch(10), h.addWidget(b)