[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.1' - sc/source

Marco Cecchetti marco.cecchetti at collabora.com
Thu Mar 2 16:26:56 UTC 2017


 sc/source/ui/unoobj/docuno.cxx |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

New commits:
commit f75cb76de358de4392446d7d292492dc34d5b202
Author: Marco Cecchetti <marco.cecchetti at collabora.com>
Date:   Wed Mar 1 18:55:11 2017 +0100

    LOK: Calc: autocomplete makes view to jump to a different place
    
    We disable auto-complete feature as a workaround.
    
    Change-Id: I25fa7591231836e0673e97fdf2c3ca72ab20e1e4
    Reviewed-on: https://gerrit.libreoffice.org/34761
    Reviewed-by: Jan Holesovsky <kendy at collabora.com>
    Tested-by: Jan Holesovsky <kendy at collabora.com>

diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx
index 1c13004..cc0ac9b 100644
--- a/sc/source/ui/unoobj/docuno.cxx
+++ b/sc/source/ui/unoobj/docuno.cxx
@@ -970,11 +970,15 @@ void ScModelObj::setClientVisibleArea(const Rectangle& rRectangle)
     pViewData->ForcePageUpDownOffset(rRectangle.GetHeight());
 }
 
-
 void ScModelObj::initializeForTiledRendering(const css::uno::Sequence<css::beans::PropertyValue>& /*rArguments*/)
 {
     SolarMutexGuard aGuard;
 
+    // disable word autocompletion
+    ScAppOptions aAppOptions( SC_MOD()->GetAppOptions() );
+    aAppOptions.SetAutoComplete(false);
+    SC_MOD()->SetAppOptions(aAppOptions);
+
     // show us the text exactly
     ScInputOptions aInputOptions(SC_MOD()->GetInputOptions());
     aInputOptions.SetTextWysiwyg(true);


More information about the Libreoffice-commits mailing list