From e2ffb71305c5f085eec6d396651c76d6daee3406 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Wed, 25 Jan 2012 17:44:36 +0100 Subject: fdo#38542: sw: ODF import: divide width by 3 for "double" borders The problem is that the width from the fo:border{,-left,-right,-top,-bottom} attributes is effectively tripled for "double" borders. --- sw/source/filter/xml/xmlithlp.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sw/source/filter/xml/xmlithlp.cxx b/sw/source/filter/xml/xmlithlp.cxx index 18a1b6b02410..cd383b58765f 100644 --- a/sw/source/filter/xml/xmlithlp.cxx +++ b/sw/source/filter/xml/xmlithlp.cxx @@ -212,6 +212,10 @@ sal_Bool lcl_frmitems_setXMLBorder( SvxBorderLine*& rpLine, rpLine->GetOutWidth(); rpLine->SetWidth( nWidth ); + if (bDouble) + { // fdo#38542: divide width by 3 for outer line, gap, inner line + rpLine->ScaleMetrics(1, 3); + } } lcl_frmitems_setXMLBorderStyle( *rpLine, nStyle ); } -- cgit v1.2.3