[Tizen] Revert "Changes after touch consumed behaviour change"
[platform/core/uifw/dali-demo.git] / examples / text-field / text-field-example.cpp
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;
   }
 
   /**