From 493339950737c84c315c5c8cddda0cd32e945791 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20St=C3=B6hr?= Date: Wed, 4 Nov 2015 01:36:39 +0100 Subject: [PATCH] lyx_2_2.py: fix the conversion of colored boxes --- lib/lyx2lyx/lyx_2_2.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/lib/lyx2lyx/lyx_2_2.py b/lib/lyx2lyx/lyx_2_2.py index 4155f49a6a..5bcf395a18 100644 --- a/lib/lyx2lyx/lyx_2_2.py +++ b/lib/lyx2lyx/lyx_2_2.py @@ -1186,16 +1186,16 @@ def revert_colorbox(document): beg = document.body[frame].find('"') end = document.body[frame].rfind('"') - framecolor = document.body[frame][beg+1:end] + framecolor = document.body[frame][beg + 1 : end] # this should be on the next line bgcolor = frame + 1 beg = document.body[bgcolor].find('"') end = document.body[bgcolor].rfind('"') - backcolor = document.body[bgcolor][beg+1:end] + backcolor = document.body[bgcolor][beg + 1 : end] # delete those bits - del document.body[frame:frame+2] + del document.body[frame : frame + 2] # adjust end of inset einset -= 2 @@ -1209,11 +1209,13 @@ def revert_colorbox(document): # nothing needed pass else: + # we also neeed to load xcolor in the preamble but only once + add_to_preamble(document, ["\\@ifundefined{rangeHsb}{\usepackage{xcolor}}{}"]) document.body[einset + 1 : einset + 1] = put_cmd_in_ert("}") if framecolor != defaultframecolor: - document.body[binset:binset] = put_cmd_in_ert("\\backslash fcolorbox{" + framecolor + "}{" + backcolor + "}{") + document.body[binset:binset] = put_cmd_in_ert("\\fcolorbox{" + framecolor + "}{" + backcolor + "}{") else: - document.body[binset:binset] = put_cmd_in_ert("\\backslash colorbox{" + backcolor + "}{") + document.body[binset:binset] = put_cmd_in_ert("\\colorbox{" + backcolor + "}{") binset = einset -- 2.39.2