Change WidgetView touch behaviour 09/222809/1 accepted/tizen/unified/20200218.145826 submit/tizen/20200218.085247
authorminho sun <minho.sun@samsung.com>
Wed, 15 Jan 2020 09:46:53 +0000 (18:46 +0900)
committerminho sun <minho.sun@samsung.com>
Mon, 20 Jan 2020 07:57:44 +0000 (16:57 +0900)
Interrupted is comming when finger goes out of touching area.
Then, send Touch-Up event to Widget window.

Change-Id: Ic631281a34649bb91dd7a77565336070a8ecbc93

widget_viewer_dali/internal/widget_view/widget_view_impl.cpp

index ee1de1932b5f436094ee8976565ea6340dbda99f..347b386a720e44fcde6e97eda18123b122e84099 100644 (file)
@@ -1488,6 +1488,12 @@ bool WidgetView::TouchEvent( const Dali::TouchData& event )
       button = 0;
       break;
     }
+    case Dali::PointState::INTERRUPTED:
+    {
+      type = TIZEN_REMOTE_SURFACE_EVENT_TYPE_TOUCH_UP;
+
+      break;
+    }
     default:
     {
       return false;