mirror of
https://github.com/scratchfoundation/Gestouch.git
synced 2024-11-27 01:35:40 -05:00
Fix condition for dispatching GestureTrackingEvent.GESTURE_TRACKING_END
This commit is contained in:
parent
fbc4ab7422
commit
d3ddb825b5
1 changed files with 1 additions and 1 deletions
|
@ -494,7 +494,7 @@ _propertyNames.push("timeThreshold", "moveThreshold");
|
|||
|
||||
_adjustCentralPoint();
|
||||
|
||||
if (_trackingPointsCount == minTouchPointsCount + 1)
|
||||
if (_trackingPointsCount == minTouchPointsCount - 1)
|
||||
{
|
||||
if (hasEventListener(GestureTrackingEvent.GESTURE_TRACKING_END))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue