]> git.lyx.org Git - lyx.git/commitdiff
Spacing.
authorRichard Heck <rgheck@comcast.net>
Mon, 14 Dec 2009 16:50:17 +0000 (16:50 +0000)
committerRichard Heck <rgheck@comcast.net>
Mon, 14 Dec 2009 16:50:17 +0000 (16:50 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32530 a592a061-630c-0410-9148-cb99ea01b6c8

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 + "'";