From 671787e144345b03a801ede499cc4784e71d6941 Mon Sep 17 00:00:00 2001 From: Henry Castro Date: Thu, 4 Jun 2015 20:44:45 -0400 Subject: sc tiled editing: EndTracking trigger MouseUp It does not need to trigger fake MouseUp event Change-Id: Id90c7787ef3312abe81bce359648aee0dfccd905 --- sc/source/ui/unoobj/docuno.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx index 73f674effbc1..36de58625280 100644 --- a/sc/source/ui/unoobj/docuno.cxx +++ b/sc/source/ui/unoobj/docuno.cxx @@ -591,7 +591,7 @@ void ScModelObj::postMouseEvent(int nType, int nX, int nY, int nCount) // sometimes MouseButtonDown captures mouse and starts tracking, and VCL // will not take care of releasing that with tiled rendering if (pGridWindow->IsTracking()) - pGridWindow->EndTracking(); + pGridWindow->EndTracking(TrackingEventFlags::DontCallHdl); break; default: -- cgit