- If the number of minimum touch is more than two, PanGestureDetector::DetectedSignal is
not emitted because 'mState' of PanGestureDetector could not update from Clear to other states.
- When the detector state is Clear and the primary point state is stationary,
the detector state should update Possible and Send Pan event.
Change-Id: I579868197a7707c9af01f54368a68bd2c842afbb
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
{
case Clear:
{
- if (primaryPointState == PointState::DOWN)
+ if ( ( primaryPointState == PointState::DOWN ) || ( primaryPointState == PointState::STATIONARY ) )
{
mPrimaryTouchDownLocation = event.points[0].GetScreenPosition();
mPrimaryTouchDownTime = event.time;