summaryrefslogtreecommitdiff
path: root/apps/menus/settings_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/menus/settings_menu.c')
-rw-r--r--apps/menus/settings_menu.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/apps/menus/settings_menu.c b/apps/menus/settings_menu.c
index 33d29b003c..a5daad01ce 100644
--- a/apps/menus/settings_menu.c
+++ b/apps/menus/settings_menu.c
@@ -83,17 +83,18 @@ static int selectivesoftlock_set_mask(void* param)
83 (void)param; 83 (void)param;
84int mask = global_settings.bt_selective_softlock_actions_mask; 84int mask = global_settings.bt_selective_softlock_actions_mask;
85 struct s_mask_items maskitems[]={ 85 struct s_mask_items maskitems[]={
86 {ID2P(LANG_VOLUME) , SEL_ACTION_VOL}, 86 {ID2P(LANG_ACTION_VOLUME), SEL_ACTION_VOL},
87 {ID2P(LANG_ACTION_PLAY), SEL_ACTION_PLAY}, 87 {ID2P(LANG_ACTION_PLAY), SEL_ACTION_PLAY},
88 {ID2P(LANG_ACTION_SEEK), SEL_ACTION_SEEK}, 88 {ID2P(LANG_ACTION_SEEK), SEL_ACTION_SEEK},
89 {ID2P(LANG_ACTION_SKIP), SEL_ACTION_SKIP}, 89 {ID2P(LANG_ACTION_SKIP), SEL_ACTION_SKIP},
90 #ifdef HAVE_BACKLIGHT 90 #ifdef HAVE_BACKLIGHT
91 {ID2P(LANG_ACTION_AUTOLOCK_ON), SEL_ACTION_AUTOLOCK}, 91 {ID2P(LANG_ACTION_AUTOLOCK_ON), SEL_ACTION_AUTOLOCK},
92 #endif 92 #endif
93 #if defined(HAVE_TOUCHPAD) || defined(HAVE_TOUCHSCREEN) 93 #if defined(HAVE_TOUCHPAD) || defined(HAVE_TOUCHSCREEN)
94 {ID2P(LANG_ACTION_DISABLE_TOUCH) , SEL_ACTION_NOTOUCH}, 94 {ID2P(LANG_ACTION_DISABLE_TOUCH), SEL_ACTION_NOTOUCH},
95 #endif 95 #endif
96 {ID2P(LANG_ACTION_DISABLE_NOTIFY), SEL_ACTION_NONOTIFY} 96 {ID2P(LANG_ACTION_DISABLE_NOTIFY), SEL_ACTION_NONOTIFY},
97 {ID2P(LANG_SOFTLOCK_DISABLE_ALL_NOTIFY), SEL_ACTION_ALLNONOTIFY}
97 }; 98 };
98 99
99 mask = mask_select(mask, ID2P(LANG_SOFTLOCK_SELECTIVE) 100 mask = mask_select(mask, ID2P(LANG_SOFTLOCK_SELECTIVE)