summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornavin patidar <patidar@kacst.edu.sa>2013-03-19 15:21:21 +0300
committerAhmad Harthi <aalharthi@kacst.edu.sa>2013-03-23 07:07:56 +0000
commit092bf2fb0052ca73855127dc03ff1ae3f9321506 (patch)
tree2b77ee3c902c2f119773a4e961d6fc4146853a9a
parent40fd922ecf6a9ba9cfe541975ea2fa6b711a66fd (diff)
fix fdo#62050: for impress
Impress is also affected by fdo#62050. In RTL UI, comment window is RTL and editbox’s (editeng) default writing direction is LTR. I suspect, bug is result of this RTL & LTR mix-up. Change-Id: I188ce05350f721081378509915158d4ec4e5f8cf Reviewed-on: https://gerrit.libreoffice.org/2922 Reviewed-by: Ahmad Harthi <aalharthi@kacst.edu.sa> Tested-by: Ahmad Harthi <aalharthi@kacst.edu.sa>
-rw-r--r--sd/source/ui/annotations/annotationwindow.cxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/sd/source/ui/annotations/annotationwindow.cxx b/sd/source/ui/annotations/annotationwindow.cxx
index 2a859f0b954d..d03548ad85fa 100644
--- a/sd/source/ui/annotations/annotationwindow.cxx
+++ b/sd/source/ui/annotations/annotationwindow.cxx
@@ -327,15 +327,12 @@ void AnnotationWindow::InitControls()
mpOutliner->SetRefDevice( pDev );
}
+ mpTextWindow->EnableRTL( sal_False );
mpOutlinerView = new OutlinerView ( mpOutliner, mpTextWindow );
mpOutliner->InsertView(mpOutlinerView );
mpTextWindow->SetOutlinerView(mpOutlinerView);
mpOutlinerView->SetOutputArea( PixelToLogic( Rectangle(0,0,1,1) ) );
- // TODO: ??
- EEHorizontalTextDirection aDefHoriTextDir = Application::GetSettings().GetLayoutRTL() ? EE_HTEXTDIR_R2L : EE_HTEXTDIR_L2R;
- mpOutliner->SetDefaultHorizontalTextDirection( aDefHoriTextDir );
-
//create Scrollbars
mpVScrollbar = new ScrollBar(this, WB_3DLOOK |WB_VSCROLL|WB_DRAG);
mpVScrollbar->EnableNativeWidget(false);