[Libreoffice-commits] core.git: sc/source

Marco Cecchetti (via logerrit) logerrit at kemper.freedesktop.org
Fri Mar 6 09:44:47 UTC 2020


 sc/source/ui/view/gridwin.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 234a15d788adbb75317554b516acb3c8f113ece7
Author:     Marco Cecchetti <marco.cecchetti at collabora.com>
AuthorDate: Wed Feb 12 14:41:17 2020 +0100
Commit:     Marco Cecchetti <marco.cecchetti at collabora.com>
CommitDate: Fri Mar 6 10:44:01 2020 +0100

    lok: calc: unwanted cell range selection occurs when clicking on a cell
    
    When user clicks on a cell after the browser has lost focus user gets
    the cell range from A1 to the current clicked cell selected
    
    Change-Id: I1dd495f42ca7e5ee8cad1d2354dcebc0cb05d65f
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88549
    Tested-by: Marco Cecchetti <marco.cecchetti at collabora.com>
    Reviewed-by: Marco Cecchetti <marco.cecchetti at collabora.com>
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90071
    Tested-by: Jenkins

diff --git a/sc/source/ui/view/gridwin.cxx b/sc/source/ui/view/gridwin.cxx
index d690b59fccc6..969136b777b3 100644
--- a/sc/source/ui/view/gridwin.cxx
+++ b/sc/source/ui/view/gridwin.cxx
@@ -2697,7 +2697,7 @@ void ScGridWindow::Tracking( const TrackingEvent& rTEvt )
             MouseButtonUp( aUpEvt );
         }
     }
-    else
+    else if ( !comphelper::LibreOfficeKit::isActive() )
         MouseMove( rMEvt );
 }
 


More information about the Libreoffice-commits mailing list