summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2018-08-23 22:19:56 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-08-24 09:07:35 +0200
commit29e5a7cc352e54570d512007421a550cab42d361 (patch)
treed5e7f97611f28328d2b0a91a5f8658874eea00a3 /svtools
parenteaa1396573e25e8c52cb452e2b2471b9bdbd3c0f (diff)
tdf#119427: fix selectionChanged event
Regression from 0fb4ae8767fa5ff791cd42934b4215011a269eb0 Thank you Drew for the bibisection! Change-Id: Id444172d534374d71765bd4aca71b012cc2352f1 Reviewed-on: https://gerrit.libreoffice.org/59526 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr> (cherry picked from commit 36123b42c5d3084f94d068874a0bac2cc849a66e) Reviewed-on: https://gerrit.libreoffice.org/59530 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/table/defaultinputhandler.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/svtools/source/table/defaultinputhandler.cxx b/svtools/source/table/defaultinputhandler.cxx
index 945919bf5140..7f01f84f3bd6 100644
--- a/svtools/source/table/defaultinputhandler.cxx
+++ b/svtools/source/table/defaultinputhandler.cxx
@@ -89,6 +89,8 @@ namespace svt { namespace table
bool handled = false;
for (auto const& mouseFunction : i_impl.aMouseFunctions)
{
+ if (handled)
+ break;
if (mouseFunction == i_impl.pActiveFunction)
// we already invoked this function
continue;