mirror of
https://github.com/scratchfoundation/Gestouch.git
synced 2024-11-23 07:47:59 -05:00
Minor syntax fix
This commit is contained in:
parent
33dbef12bc
commit
46919cf710
1 changed files with 1 additions and 1 deletions
|
@ -424,7 +424,7 @@ package org.gestouch.gestures
|
||||||
*/
|
*/
|
||||||
protected function ignoreTouch(touch:Touch):void
|
protected function ignoreTouch(touch:Touch):void
|
||||||
{
|
{
|
||||||
if (_touchesMap.hasOwnProperty(touch.id))
|
if (touch.id in _touchesMap)
|
||||||
{
|
{
|
||||||
delete _touchesMap[touch.id];
|
delete _touchesMap[touch.id];
|
||||||
_touchesCount--;
|
_touchesCount--;
|
||||||
|
|
Loading…
Reference in a new issue