From 15de218afd7cea3d23fab262a0ae9835a4760433 Mon Sep 17 00:00:00 2001 From: Charles Haley Date: Wed, 8 Mar 2023 19:11:29 +0000 Subject: [PATCH] Fix the tooltip for the new 'put composites with comments' check box. --- src/calibre/gui2/preferences/create_custom_column.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/calibre/gui2/preferences/create_custom_column.py b/src/calibre/gui2/preferences/create_custom_column.py index 8bb0de93cd..931ac9e6cc 100644 --- a/src/calibre/gui2/preferences/create_custom_column.py +++ b/src/calibre/gui2/preferences/create_custom_column.py @@ -459,8 +459,11 @@ class CreateCustomColumn(QDialog): l = QHBoxLayout() self.composite_in_comments_box = cmc = QCheckBox(_("Show with comments in book details")) cmc.setToolTip('

' + _('If you check this box then the column contents ' - 'will show in the Comments section in book details, ' - 'which is on the right hand side. The output of the ' + 'will show in the Comments section in book details. ' + 'You can indicate whether not to have a header or ' + 'to put a header above the column. If you want a ' + "header beside the data, don't check this box. " + 'If this box is checked then the output of the ' 'column template must be plain text or html.') + '

') l.addWidget(cmc) self.composite_heading_position = chp = QComboBox(self)