diff options
author | Justin Luth <justin_luth@sil.org> | 2017-01-13 20:58:02 +0300 |
---|---|---|
committer | Justin Luth <justin_luth@sil.org> | 2017-01-14 05:52:25 +0000 |
commit | 098d90920a7aea1cc2ee53a79b909f0eef67ca02 (patch) | |
tree | 28f3425c675cc6e375cd7495eed3723a51671365 /sw | |
parent | 9157ae95d4861c545b01e1d9df67932c86a3c640 (diff) |
tdf#105294 - only add spacing for the border being set
related to bug 41542 which now allows the space-to-contents value
even if the border is not visible.
For years, LO has been resetting the spacing to zero when a line
is diabled. Setting all border distances here was a mistake that
was never caught before, and the documents created because of
this oversight will likely cause some grief to bug 41542.
Change-Id: Id2708cf20600e29e97dc6c8d8b779894ad9c38d1
Reviewed-on: https://gerrit.libreoffice.org/33055
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Justin Luth <justin_luth@sil.org>
(cherry picked from commit 9e7526044c8fa6b006b0cb791d15f2476c96ebf2)
Reviewed-on: https://gerrit.libreoffice.org/33062
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/edit/autofmt.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/edit/autofmt.cxx b/sw/source/core/edit/autofmt.cxx index 1109e5da80fa..fbc8351f668a 100644 --- a/sw/source/core/edit/autofmt.cxx +++ b/sw/source/core/edit/autofmt.cxx @@ -584,7 +584,7 @@ bool SwAutoFormat::DoUnderline() aSet.Put( SwParaConnectBorderItem( false ) ); SvxBoxItem aBox( RES_BOX ); aBox.SetLine( &aLine, SvxBoxItemLine::BOTTOM ); - aBox.SetAllDistances(42); // ~0,75 mm + aBox.SetDistance(42, SvxBoxItemLine::BOTTOM ); // ~0,75 mm aSet.Put(aBox); m_pDoc->getIDocumentContentOperations().InsertItemSet( m_aDelPam, aSet ); |