[Tizen] Revert "Changes after touch consumed behaviour change" 33/241033/1 accepted/tizen/unified/20200814.123051 submit/tizen/20200814.024056
authorseungho <seungho@seungho.tn.corp.samsungelectronics.net>
Fri, 14 Aug 2020 02:22:52 +0000 (11:22 +0900)
committerseungho <seungho@seungho.tn.corp.samsungelectronics.net>
Fri, 14 Aug 2020 02:23:43 +0000 (11:23 +0900)
This reverts commit 11c1032aa4e8cb16a7b1c84ee355d884d31f6f0f.

Change-Id: I04db954e4b1875e34129cab752d891573ad13e06

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

index a3a927d..c76496b 100644 (file)
@@ -258,7 +258,7 @@ private:
         break;
       }
     }
-    return false;
+    return true;
   }
 
   /**
index a401d77..b2478b3 100644 (file)
@@ -154,7 +154,7 @@ public:
   bool OnPopupTouched( Actor actor, const TouchData& 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 ) )
       {
@@ -177,7 +177,7 @@ public:
       } // end switch
     }
 
-    return false;
+    return true;
   }
 
   /**