[Tizen] Revert "Changes after touch consumed behaviour change" accepted/tizen/unified/20200917.030630 submit/tizen/20200916.173718
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Wed, 16 Sep 2020 05:15:06 +0000 (14:15 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Wed, 16 Sep 2020 05:15:15 +0000 (14:15 +0900)
This reverts commit 2b7d60cb939a675c3a14b6dce8425fd4403dcf8c.

examples/gestures/gesture-example.cpp
examples/text-field/text-field-example.cpp

index 129a1b7..381852d 100644 (file)
@@ -247,7 +247,7 @@ private:
         break;
       }
     }
-    return false;
+    return true;
   }
 
   /**
index 307c0df..7bae750 100644 (file)
@@ -152,7 +152,7 @@ public:
   bool OnPopupTouched(Actor actor, const TouchEvent& event)
   {
     // End edit mode for TextField if parent Popup touched.
-    if((event.GetPointCount() > 0) && (mPopup == event.GetHitActor(0)))
+    if(event.GetPointCount() > 0)
     {
       switch(event.GetState(0))
       {
@@ -175,7 +175,7 @@ public:
       } // end switch
     }
 
-    return false;
+    return true;
   }
 
   /**