[Tizen] Revert "Changes after touch consumed behaviour change" accepted/tizen/unified/20200826.133124 accepted/tizen/unified/20200831.001934 submit/tizen/20200825.050532 submit/tizen/20200828.113809
authorJoogab Yun <joogab.yun@samsung.com>
Mon, 24 Aug 2020 05:55:11 +0000 (14:55 +0900)
committerJoogab Yun <joogab.yun@samsung.com>
Mon, 24 Aug 2020 05:55:15 +0000 (14:55 +0900)
This reverts commit be88453bb82f1d8f5e8c5f0dce55f2bb3fcfba60.

Change-Id: I074d554d5225610dbe081b596b234880e3e51dc5

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

index fb5b4a7..0bbeba1 100644 (file)
@@ -258,7 +258,7 @@ private:
         break;
       }
     }
-    return false;
+    return true;
   }
 
   /**
index e0e8ceb..8e9614e 100644 (file)
@@ -154,7 +154,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 ) )
       {
@@ -177,7 +177,7 @@ public:
       } // end switch
     }
 
-    return false;
+    return true;
   }
 
   /**