From e4fc3d913f091c45a6dc15ab96107d7a9bef9659 Mon Sep 17 00:00:00 2001 From: "Seungho, Baek" Date: Tue, 27 Mar 2018 14:16:19 +0900 Subject: [PATCH] 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 --- .../animated-gradient-call-active/animated-gradient-call-active.cpp | 3 +++ 1 file changed, 3 insertions(+) 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 ); -- 2.7.4