InsetBox.cpp: fix a bug I introduced in [88593e0e/lyxgit]

This commit is contained in:
Uwe Stöhr 2015-05-17 17:36:46 +02:00
parent 84cca2dd94
commit 95af488798

View File

@ -441,7 +441,7 @@ void InsetBox::latex(otexstream & os, OutputParams const & runparams) const
if (!width_string.empty()) {
if (params_.backgroundcolor != "none")
os << "\\colorbox{" << params_.backgroundcolor << "}{";
os << "\\makebox{";
os << "\\makebox";
// FIXME UNICODE
// output the width and horizontal position
if (params_.special != "none") {
@ -455,10 +455,11 @@ void InsetBox::latex(otexstream & os, OutputParams const & runparams) const
os << "[" << params_.hor_pos << "]";
} else {
if (params_.backgroundcolor != "none")
os << "\\colorbox{" << params_.backgroundcolor << "}{";
os << "\\colorbox{" << params_.backgroundcolor << "}";
else
os << "\\mbox{";
os << "\\mbox";
}
os << "{";
}
else {
if (params_.backgroundcolor != "none" && btype == Frameless)