commit d33caae010d7b45c2eb2c4ff97cd41508b8d6855
Author: Uwe Stöhr <[email protected]>
Date: Sat May 16 23:29:09 2015 +0200
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 ec6213b..d7f417e 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