summaryrefslogtreecommitdiff
path: root/sw/source/core/txtnode
diff options
context:
space:
mode:
authorMark Hung <marklh9@gmail.com>2015-08-02 08:43:01 +0800
committerNorbert Thiebaud <nthiebaud@gmail.com>2015-08-15 21:29:50 +0000
commit929954e0108897c4882660b4ce9cb5d4cf1077ec (patch)
treef048f77eb5846e54c2e47a381972c8a991fb0772 /sw/source/core/txtnode
parent2238bb47f5fce8449760e71525153967b4ce873c (diff)
Fix tdf#36884 10n character does not rotate 270 degree
Change-Id: Ife1b85cc55e4e0f4d0be84bbcdfc93104160f271 Reviewed-on: https://gerrit.libreoffice.org/17470 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'sw/source/core/txtnode')
-rw-r--r--sw/source/core/txtnode/swfont.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/txtnode/swfont.cxx b/sw/source/core/txtnode/swfont.cxx
index 60d50e794a59..c29760898b31 100644
--- a/sw/source/core/txtnode/swfont.cxx
+++ b/sw/source/core/txtnode/swfont.cxx
@@ -432,7 +432,7 @@ void SwFont::SetVertical( sal_uInt16 nDir, const bool bVertFormat )
{
bFntChg = true;
aSub[0].SetVertical( nDir, bVertFormat );
- aSub[1].SetVertical( nDir, bVertFormat || nDir > 1000 );
+ aSub[1].SetVertical( nDir, bVertFormat );
aSub[2].SetVertical( nDir, bVertFormat );
}
}