Revert "[Tizen] Not execute the remove callback"
[platform/core/uifw/dali-core.git] / dali / internal / event / events / event-processor.cpp
index 34361e5..44d9eef 100644 (file)
@@ -150,15 +150,7 @@ void EventProcessor::ProcessEvents()
       case Event::Touch:
       {
         Integration::TouchEvent& touchEvent = static_cast<Integration::TouchEvent&>(*event);
-        const bool               consumed   = mTouchEventProcessor.ProcessTouchEvent(touchEvent);
-
-        // If touch is consumed, then gestures should be cancelled
-        // Do this by sending an interrupted event to the GestureEventProcessor
-        if(consumed)
-        {
-          Integration::Point& point = touchEvent.GetPoint(0);
-          point.SetState(PointState::INTERRUPTED);
-        }
+        mTouchEventProcessor.ProcessTouchEvent(touchEvent);
 
         mGestureEventProcessor.ProcessTouchEvent(mScene, touchEvent);
         break;