Commit e4fc3d913f091c45a6dc15ab96107d7a9bef9659
1 parent
82d0f0ee
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 <sbsh.baek@samsung.com>
Showing
1 changed file
with
3 additions
and
0 deletions
examples/animated-gradient-call-active/animated-gradient-call-active.cpp
| ... | ... | @@ -211,6 +211,8 @@ private: |
| 211 | 211 | mCallStartButton.ClickedSignal().Connect( this, &CallController::OnButtonClicked ); |
| 212 | 212 | mCallStartButton.SetProperty( DevelButton::Property::SELECTED_BACKGROUND_VISUAL, ICON_CALL_IMAGE ); |
| 213 | 213 | mCallStartButton.SetProperty( DevelButton::Property::UNSELECTED_BACKGROUND_VISUAL, ICON_CALL_IMAGE ); |
| 214 | + mCallStartButton.SetProperty( Control::Property::BACKGROUND, ICON_CALL_IMAGE ); | |
| 215 | + mCallStartButton.SetLabelText(""); | |
| 214 | 216 | |
| 215 | 217 | mStage.Add( mCallStartButton ); |
| 216 | 218 | mStage.Add( mButtonIconDecall ); |
| ... | ... | @@ -291,6 +293,7 @@ private: |
| 291 | 293 | mCallEndButton.SetProperty( DevelButton::Property::SELECTED_BACKGROUND_VISUAL, "" ); |
| 292 | 294 | mCallEndButton.SetProperty( DevelButton::Property::UNSELECTED_BACKGROUND_VISUAL, "" ); |
| 293 | 295 | mCallEndButton.SetStyleName( DECLINE_BUTTON_STYLE_STR ); |
| 296 | + mCallEndButton.SetLabelText(""); | |
| 294 | 297 | |
| 295 | 298 | mButtonClip.Add( mCallEndButton ); |
| 296 | 299 | mButtonClip.Add( mButtonIcon ); | ... | ... |