Avoid overwriting TEXT with PLACEHOLDER_TEXT 97/39797/2
authorPaul Wisbey <p.wisbey@samsung.com>
Fri, 22 May 2015 13:51:58 +0000 (14:51 +0100)
committerPaul Wisbey <p.wisbey@samsung.com>
Fri, 22 May 2015 13:57:01 +0000 (14:57 +0100)
Change-Id: I679d9a8a1ea72d28f45897accc8c3051b85e938b

dali-toolkit/internal/text/text-controller.cpp

index 6400370..adf4e75 100644 (file)
@@ -160,7 +160,12 @@ void Controller::SetPlaceholderText( PlaceholderType type, const std::string& te
       mImpl->mEventData->mPlaceholderTextActive = text;
     }
 
       mImpl->mEventData->mPlaceholderTextActive = text;
     }
 
-    ShowPlaceholderText();
+    // Update placeholder if there is no text
+    if( mImpl->IsShowingPlaceholderText() ||
+        0u == mImpl->mLogicalModel->mText.Count() )
+    {
+      ShowPlaceholderText();
+    }
   }
 }
 
   }
 }