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