diff options
author | Mark Hung <marklh9@gmail.com> | 2015-08-18 20:17:05 +0800 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-08-18 13:57:17 +0000 |
commit | 8ead1423f10dee87967cbbbb5fabb2f26046bbb8 (patch) | |
tree | e92b6e706b7be7efe2c3d18041192fb21691fe57 /vcl/unx/generic | |
parent | c4fe12406040b3395d3964406073027bd4006243 (diff) |
tdf#832525 - Wrong punctuation direction after Chinese characters in
vertical layout.
Change-Id: I6391e665db205545f0d660e3de826755c954f286
Reviewed-on: https://gerrit.libreoffice.org/17836
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/unx/generic')
-rw-r--r-- | vcl/unx/generic/gdi/cairotextrender.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/generic/gdi/cairotextrender.cxx b/vcl/unx/generic/gdi/cairotextrender.cxx index ebef272cc370..0f9fafc93df4 100644 --- a/vcl/unx/generic/gdi/cairotextrender.cxx +++ b/vcl/unx/generic/gdi/cairotextrender.cxx @@ -248,7 +248,7 @@ void CairoTextRender::DrawServerFontLayout( const ServerFontLayout& rLayout ) { int nGlyphRotation = *aI; - std::vector<int>::const_iterator aNext = std::find_if(aI+1, aEnd, hasRotation); + std::vector<int>::const_iterator aNext = nGlyphRotation?(aI+1):std::find_if(aI+1, aEnd, hasRotation); size_t nStartIndex = std::distance(aStart, aI); size_t nLen = std::distance(aI, aNext); |