From cbe28d9d7a6353e814b98892628836f61305d471 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Mon, 14 Dec 2009 16:50:17 +0000 Subject: [PATCH] Spacing. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32530 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/InsetBox.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/insets/InsetBox.cpp b/src/insets/InsetBox.cpp index ad2084f5bb..e1557bc15a 100644 --- a/src/insets/InsetBox.cpp +++ b/src/insets/InsetBox.cpp @@ -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 + "'"; -- 2.39.5