From: Seungho, Baek Date: Tue, 27 Mar 2018 05:16:19 +0000 (+0900) Subject: Bug patch of the Animated gradient call active demo X-Git-Tag: dali_1.3.49~2 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-demo.git;a=commitdiff_plain;h=e4fc3d913f091c45a6dc15ab96107d7a9bef9659 Bug patch of the Animated gradient call active demo - Removed default button background - Removed default button text Change-Id: I20ebb2a963c2769251c1460bb1677fb78c8d9108 Signed-off-by: Seungho, Baek --- diff --git a/examples/animated-gradient-call-active/animated-gradient-call-active.cpp b/examples/animated-gradient-call-active/animated-gradient-call-active.cpp index 6df6e24..88c86e8 100644 --- a/examples/animated-gradient-call-active/animated-gradient-call-active.cpp +++ b/examples/animated-gradient-call-active/animated-gradient-call-active.cpp @@ -211,6 +211,8 @@ private: mCallStartButton.ClickedSignal().Connect( this, &CallController::OnButtonClicked ); mCallStartButton.SetProperty( DevelButton::Property::SELECTED_BACKGROUND_VISUAL, ICON_CALL_IMAGE ); mCallStartButton.SetProperty( DevelButton::Property::UNSELECTED_BACKGROUND_VISUAL, ICON_CALL_IMAGE ); + mCallStartButton.SetProperty( Control::Property::BACKGROUND, ICON_CALL_IMAGE ); + mCallStartButton.SetLabelText(""); mStage.Add( mCallStartButton ); mStage.Add( mButtonIconDecall ); @@ -291,6 +293,7 @@ private: mCallEndButton.SetProperty( DevelButton::Property::SELECTED_BACKGROUND_VISUAL, "" ); mCallEndButton.SetProperty( DevelButton::Property::UNSELECTED_BACKGROUND_VISUAL, "" ); mCallEndButton.SetStyleName( DECLINE_BUTTON_STYLE_STR ); + mCallEndButton.SetLabelText(""); mButtonClip.Add( mCallEndButton ); mButtonClip.Add( mButtonIcon );