projects
/
profile
/
common
/
apps
/
native
/
settings.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cc7ba6e
)
Fix media icon while sound mute status.
60/256060/1
author
JinWang An
<jinwang.an@samsung.com>
Mon, 29 Mar 2021 04:10:04 +0000
(13:10 +0900)
committer
JinWang An
<jinwang.an@samsung.com>
Mon, 29 Mar 2021 04:10:04 +0000
(13:10 +0900)
Change-Id: Ibff3516057ec455982d9588990c5903f969c9ad7
Signed-off-by: JinWang An <jinwang.an@samsung.com>
setting-profile/src/setting-profile-common.c
patch
|
blob
|
history
diff --git
a/setting-profile/src/setting-profile-common.c
b/setting-profile/src/setting-profile-common.c
index 02077c0481837b5dbaecae0bca56dc26309876de..bc7794677035bdb9a26017d43fcd17bd598dfe9b 100755
(executable)
--- a/
setting-profile/src/setting-profile-common.c
+++ b/
setting-profile/src/setting-profile-common.c
@@
-88,10
+88,9
@@
static char *setting_sound_get_media_slider_icon(sound_mode_e mode, int volume)
switch (mode)
{
case SOUND_MODE_SOUND:
- return muted ? ICON_DEFAULT_MUTE : ICON_DEFAULT_NORMAL;
case SOUND_MODE_MUTE:
case SOUND_MODE_VIBRATE:
- return
ICON_DEFAULT_MUTE
;
+ return
muted ? ICON_DEFAULT_MUTE : ICON_DEFAULT_NORMAL
;
default:
return NULL;
}