From 3172744e2244facc67278838c6b293fe062e3617 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 7 Sep 2016 09:47:27 +0530 Subject: [PATCH] Add warning about merging --- src/calibre/gui2/tweak_book/polish.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/calibre/gui2/tweak_book/polish.py b/src/calibre/gui2/tweak_book/polish.py index be8cc4631b..a7beb7fd81 100644 --- a/src/calibre/gui2/tweak_book/polish.py +++ b/src/calibre/gui2/tweak_book/polish.py @@ -47,7 +47,9 @@ def customize_remove_unused_css(name, parent, ans): m.setChecked(tprefs['merge_identical_selectors']) l.addWidget(m) d.la3 = label('' + _( - 'Merge CSS rules in the same stylesheet that have identical selectors.')) + 'Merge CSS rules in the same stylesheet that have identical selectors.' + ' Note that in rare cases merging can result in a change to the effective styling' + ' of the book, so use with care.')) d.bb = QDialogButtonBox(QDialogButtonBox.Ok | QDialogButtonBox.Cancel) d.l.addWidget(d.bb) d.bb.rejected.connect(d.reject)