From e770d17d62e4b792a0d12ec0943144fdd11cd7be Mon Sep 17 00:00:00 2001 From: daemyung jang Date: Sat, 21 Jun 2014 19:09:24 +0900 Subject: [PATCH] No use the animation when text input popup is pressed. [problem] The speed of the pressed effect is too slow than the efl. [cause] The text input popup has a animation duration. [solution] Make the duration is zero. Change-Id: Iec9a0e215cb24157ceb7ebecde519de5da29dea8 Signed-off-by: Adeel Kazmi --- base/dali-toolkit/internal/controls/text-input/text-input-popup-impl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/base/dali-toolkit/internal/controls/text-input/text-input-popup-impl.cpp b/base/dali-toolkit/internal/controls/text-input/text-input-popup-impl.cpp index 3fbe619..515a53c 100644 --- a/base/dali-toolkit/internal/controls/text-input/text-input-popup-impl.cpp +++ b/base/dali-toolkit/internal/controls/text-input/text-input-popup-impl.cpp @@ -619,6 +619,7 @@ void TextInputPopup::AddOption(const std::string& name, const std::string& capti option.SetSize( constrainedOptionSize ); option.SetX( mContentSize.x ); option.SetName( name ); + option.SetAnimationTime( 0.0f ); option.ClickedSignal().Connect( this, &TextInputPopup::OnButtonPressed ); mScrollView.Add( option ); -- 2.7.4