summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Cecchetti <marco.cecchetti@collabora.com>2018-06-14 12:32:48 +0200
committerAndras Timar <andras.timar@collabora.com>2018-07-09 08:40:26 +0100
commitd5336b61bf83db96a7f13556dc261a4ce05dc8c1 (patch)
treef5b49c5e8b86f47d6ee785e8fc5a76047ff8f1f3
parent0ef3557b7fe4bbf1d23f4d3eaf1e7837d0018293 (diff)
tdf#105720: lok: sc: currency symbol is displayed in the preceding cell
Now in online the currency symbol is placed exactly as in the desktop case. Essentially there was a mapping issue. Change-Id: I6175cfeab3d8bc3a757c8522aa9c7a7e49c4bf2b Reviewed-on: https://gerrit.libreoffice.org/55806 Reviewed-by: Jan Holesovsky <kendy@collabora.com> Tested-by: Jan Holesovsky <kendy@collabora.com> (cherry picked from commit b1d003af24447a60d1e372caded54e30501b9fd6)
-rw-r--r--sc/source/ui/view/output2.cxx13
1 files changed, 11 insertions, 2 deletions
diff --git a/sc/source/ui/view/output2.cxx b/sc/source/ui/view/output2.cxx
index ce51ee47bf0f..61d5211ec5bf 100644
--- a/sc/source/ui/view/output2.cxx
+++ b/sc/source/ui/view/output2.cxx
@@ -66,6 +66,7 @@
#include <com/sun/star/i18n/DirectionProperty.hpp>
#include <comphelper/string.hxx>
+#include <comphelper/lok.hxx>
#include <memory>
#include <vector>
@@ -565,13 +566,21 @@ void ScDrawStringsVars::RepeatToFill( long nColWidth )
if ( nRepeatPos == -1 || nRepeatPos > aString.getLength() )
return;
+ const bool bIsTiledRendering = comphelper::LibreOfficeKit::isActive();
+
long nCharWidth = pOutput->pFmtDevice->GetTextWidth(OUString(nRepeatChar));
- if ( nCharWidth < 1) return;
+
+ if ( nCharWidth < 1 || (bIsTiledRendering && nCharWidth < TWIPS_PER_PIXEL)) return;
+
if (bPixelToLogic)
nColWidth = pOutput->mpRefDevice->PixelToLogic(Size(nColWidth,0)).Width();
+
// Are there restrictions on the cell type we should filter out here ?
- long nSpaceToFill = ( nColWidth - aTextSize.Width() );
+ long nTextWidth = aTextSize.Width();
+ if ( bIsTiledRendering )
+ nTextWidth = pOutput->mpRefDevice->PixelToLogic(Size(nTextWidth,0)).Width();
+ long nSpaceToFill = ( nColWidth - nTextWidth );
if ( nSpaceToFill <= nCharWidth )
return;