git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32530 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-12-14 16:50:17 +00:00
parent 673858b182
commit cbe28d9d7a

View File

@ -485,9 +485,9 @@ docstring InsetBox::xhtml(XHTMLStream & xs, OutputParams const & runparams) cons
string attrs = "class='" + params_.type + "'";
string style;
if (!params_.width.empty())
style += ("width: " + params_.width.asHTMLString() + ";");
style += ("width: " + params_.width.asHTMLString() + "; ");
if (!params_.height.empty())
style += ("height: " + params_.height.asHTMLString() + ";");
style += ("height: " + params_.height.asHTMLString() + "; ");
if (!style.empty())
attrs += " style='" + style + "'";