You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When moved differently from setting direction(eg. MC.DIRECTION_VERTICAL, MC.DIRECTION_HORIZONTAL), MovableCoord does not fire 'release' event when touch ends.
Important thing we should notice is that
it loses chance to setInterrupt(false) by skipping 'release' process.
It makes side effects on non-interruptable component like flicking
When user flicks on different direction, its prevented status remain true
It makes flicking component interruptable although it is set interruptable: false;
Steps to check or reproduce
set MovableCoord with HORIZONTAL_DIRECTION
touch MovableCoord area VERTICALLY
then MovableCoord does fire release event.
The text was updated successfully, but these errors were encountered:
Description
When moved differently from setting direction(eg. MC.DIRECTION_VERTICAL, MC.DIRECTION_HORIZONTAL), MovableCoord does not fire 'release' event when touch ends.
Important thing we should notice is that
it loses chance to setInterrupt(false) by skipping 'release' process.
It makes side effects on non-interruptable component like
flicking
When user flicks on different direction, its
prevented
status remaintrue
It makes flicking component interruptable although it is set
interruptable: false
;Steps to check or reproduce
then MovableCoord does fire release event.
The text was updated successfully, but these errors were encountered: