From 5a2ab9479c631ca472f1f53562c89f4a925db800 Mon Sep 17 00:00:00 2001
From: Charles Haley
Date: Wed, 11 Dec 2024 14:53:44 +0000
Subject: [PATCH] Document the fact that unchecking the "Store column in OPF"
box can break things such as book jackets.
---
src/calibre/gui2/preferences/create_custom_column.py | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/calibre/gui2/preferences/create_custom_column.py b/src/calibre/gui2/preferences/create_custom_column.py
index 95471f54de..8c4d70f06d 100644
--- a/src/calibre/gui2/preferences/create_custom_column.py
+++ b/src/calibre/gui2/preferences/create_custom_column.py
@@ -517,7 +517,10 @@ class CreateCustomColumn(QDialog):
"evaluating this column's template will be stored in the backup OPF "
'stored in the library. The same is true when sending to a device, '
'assuming the format has an OPF. One reason to uncheck this box is '
- 'that the column contains large images.') + '
')
+ 'that the column contains large images.') + '' + '' +
+ _('Note that some background functions require data for a column to '
+ 'be in the OPF, for example book jackets. If you uncheck this box '
+ 'and some function stops working then check the box.') + '
')
l.addWidget(cmc)
l.addStretch()
add_row(None, l)