Fix condition for dispatching GestureTrackingEvent.GESTURE_TRACKING_END

This commit is contained in:
Pavel fljot 2011-10-25 15:19:05 +03:00
parent fbc4ab7422
commit d3ddb825b5

View file

@ -494,7 +494,7 @@ _propertyNames.push("timeThreshold", "moveThreshold");
_adjustCentralPoint();
if (_trackingPointsCount == minTouchPointsCount + 1)
if (_trackingPointsCount == minTouchPointsCount - 1)
{
if (hasEventListener(GestureTrackingEvent.GESTURE_TRACKING_END))
{