From: Uwe Stöhr Date: Sat, 16 May 2015 21:29:09 +0000 (+0200) Subject: lyx2lyx/lyx_2_2.py: correct a value X-Git-Tag: 2.2.0alpha1~801 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=d33caae010d7b45c2eb2c4ff97cd41508b8d6855;p=features.git lyx2lyx/lyx_2_2.py: correct a value --- diff --git a/lib/lyx2lyx/lyx_2_2.py b/lib/lyx2lyx/lyx_2_2.py index ec6213b90a..d7f417e7ad 100644 --- a/lib/lyx2lyx/lyx_2_2.py +++ b/lib/lyx2lyx/lyx_2_2.py @@ -1085,7 +1085,7 @@ def convert_colorbox(document): i = find_token(document.body, "height_special", i) if i == -1: return - document.body.insert(i + 2, 'framecolor "black"\nbackgroundcolor "white"') + document.body.insert(i + 2, 'framecolor "black"\nbackgroundcolor "none"') i = i + 2