diff options
author | navin patidar <patidar@kacst.edu.sa> | 2013-02-03 10:24:54 +0300 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-02-06 19:44:40 +0000 |
commit | fb697ed0ab6e0182b45c78412563c51d6f22f9d5 (patch) | |
tree | a377157f117e746d7ea43d0e69e19a72e08976fc /editeng | |
parent | 145eda4c4de2bcbb3cd255e1ccd353e81bf6c96f (diff) |
fix logic to get L/R direction
Change-Id: I481f9ea57f8c5b71eb849df3f71c75f8b9b0f1fa
Reviewed-on: https://gerrit.libreoffice.org/1972
Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/editeng/impedit3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/editeng/impedit3.cxx b/editeng/source/editeng/impedit3.cxx index 44589370c884..810877072e56 100644 --- a/editeng/source/editeng/impedit3.cxx +++ b/editeng/source/editeng/impedit3.cxx @@ -4287,7 +4287,7 @@ void ImpEditEngine::ImplInitLayoutMode( OutputDevice* pOutDev, sal_uInt16 nPara, short nScriptType = GetScriptType( EditPaM( pNode, nIndex+1 ) ); bCTL = nScriptType == i18n::ScriptType::COMPLEX; // this change was discussed in issue 37190 - bR2L = GetRightToLeft( nPara, nIndex + 1) == 1 /*RTL*/ ? true : false; + bR2L = GetRightToLeft( nPara, nIndex + 1) % 2 ? sal_True : sal_False; // it also works for issue 55927 } |