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

Marco Cecchetti (via logerrit) logerrit at kemper.freedesktop.org
Fri Feb 21 11:35:29 UTC 2020


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

New commits:
commit 97f371948a8413e383bf9a5374ffdcdfd7fc0899
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 Feb 21 12:34:56 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>

diff --git a/sc/source/ui/view/gridwin.cxx b/sc/source/ui/view/gridwin.cxx
index 8946dfc204b4..a5ca02b06aec 100644
--- a/sc/source/ui/view/gridwin.cxx
+++ b/sc/source/ui/view/gridwin.cxx
@@ -2676,7 +2676,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