From a1fb9149f048ddd2220c944487d971d37460103c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 22 Feb 2016 13:26:12 +0530 Subject: [PATCH] dstrike is not a toggle property --- src/calibre/ebooks/docx/char_styles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/ebooks/docx/char_styles.py b/src/calibre/ebooks/docx/char_styles.py index 506532e30a..51f534da7e 100644 --- a/src/calibre/ebooks/docx/char_styles.py +++ b/src/calibre/ebooks/docx/char_styles.py @@ -156,7 +156,7 @@ class RunStyle(object): } toggle_properties = { - 'b', 'bCs', 'caps', 'emboss', 'i', 'iCs', 'imprint', 'shadow', 'smallCaps', 'strike', 'dstrike', 'vanish', + 'b', 'bCs', 'caps', 'emboss', 'i', 'iCs', 'imprint', 'shadow', 'smallCaps', 'strike', 'vanish', } def __init__(self, namespace, rPr=None):