diff options
author | Mark Hung <marklh9@gmail.com> | 2015-08-02 08:43:01 +0800 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2015-08-15 21:29:50 +0000 |
commit | 929954e0108897c4882660b4ce9cb5d4cf1077ec (patch) | |
tree | f048f77eb5846e54c2e47a381972c8a991fb0772 | |
parent | 2238bb47f5fce8449760e71525153967b4ce873c (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>
-rw-r--r-- | sw/source/core/txtnode/swfont.cxx | 2 |
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 ); } } |