summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Cecchetti <marco.cecchetti@collabora.com>2020-02-12 14:41:17 +0100
committerMarco Cecchetti <marco.cecchetti@collabora.com>2020-02-21 12:34:56 +0100
commit97f371948a8413e383bf9a5374ffdcdfd7fc0899 (patch)
treeac0828104929693f97e78bd22e5259e02a11f227
parent88d656833c29ff882b3207e7b55b5b5d0c3ac13a (diff)
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@collabora.com> Reviewed-by: Marco Cecchetti <marco.cecchetti@collabora.com>
-rw-r--r--sc/source/ui/view/gridwin.cxx2
1 files changed, 1 insertions, 1 deletions
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 );
}