sd/source/core/drawdoc.cxx |    5 -----
 1 file changed, 5 deletions(-)

New commits:
commit cf425acfd4a5ff7c660523601964d45cbad74b53
Author: Khaled Hosny <khaledho...@eglug.org>
Date:   Fri Aug 26 15:19:26 2016 +0200

    tdf#56403: Text is right aligned in RTL locales
    
    Draw/Impress is setting writing mode to RTL (which in turn sets text
    alignment to right) if the current locale is RTL one. This does not make
    sense at all since it means document prepared on a LTR locale and
    contains LTR text will appear right aligned on RTL locales.
    
    It would have slightly more sense if SetDefaultWritingMode() actually
    just set a default (for e.g. new documents), but that is not the case
    here as it affects all documents.
    
    This was introduced in 2c32696a04bc195c8ce61a0df6dcafb8c0c49fe0 with a
    branch merge and no further explanation.
    
    Change-Id: Idee0f58e153498a6676a22242d2edd5054b908c6
    Reviewed-on: https://gerrit.libreoffice.org/28411
    Tested-by: Jenkins <c...@libreoffice.org>
    Reviewed-by: Khaled Hosny <khaledho...@eglug.org>

diff --git a/sd/source/core/drawdoc.cxx b/sd/source/core/drawdoc.cxx
index bdf3395..c448609 100644
--- a/sd/source/core/drawdoc.cxx
+++ b/sd/source/core/drawdoc.cxx
@@ -243,11 +243,6 @@ SdDrawDocument::SdDrawDocument(DocumentType eType, 
SfxObjectShell* pDrDocSh)
 
     // If the current application language is a language that uses 
right-to-left text...
     LanguageType eRealCTLLanguage = 
Application::GetSettings().GetLanguageTag().getLanguageType();
-    if( MsLangId::isRightToLeft( eRealCTLLanguage ) )
-    {
-        // ... then we have to set this as a default
-        SetDefaultWritingMode( css::text::WritingMode_RL_TB );
-    }
 
     // for korean and japanese languages we have a different default for apply 
spacing between asian, latin and ctl text
     if (MsLangId::isKorean(eRealCTLLanguage) || (LANGUAGE_JAPANESE == 
eRealCTLLanguage))
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to