]> git.lyx.org Git - features.git/blobdiff - src/insets/InsetBox.cpp
Spacing.
[features.git] / src / insets / InsetBox.cpp
index ad2084f5bb7497c54d54f6e4db9390c075aa3a7f..e1557bc15ac3a16ffbc192a60345d4ee2ee356de 100644 (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 + "'";