diff options
Diffstat (limited to 'apps/menus/settings_menu.c')
-rw-r--r-- | apps/menus/settings_menu.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/menus/settings_menu.c b/apps/menus/settings_menu.c index 690f9e62e4..b962f1fb52 100644 --- a/apps/menus/settings_menu.c +++ b/apps/menus/settings_menu.c | |||
@@ -211,6 +211,10 @@ MENUITEM_SETTING(poweroff, &global_settings.poweroff, NULL); | |||
211 | #ifdef HAVE_RTC_ALARM | 211 | #ifdef HAVE_RTC_ALARM |
212 | MENUITEM_FUNCTION(alarm_screen_call, ID2P(LANG_ALARM_MOD_ALARM_MENU), | 212 | MENUITEM_FUNCTION(alarm_screen_call, ID2P(LANG_ALARM_MOD_ALARM_MENU), |
213 | (menu_function)alarm_screen, NULL, Icon_NOICON); | 213 | (menu_function)alarm_screen, NULL, Icon_NOICON); |
214 | #if defined(HAVE_RECORDING) || CONFIG_TUNER | ||
215 | MENUITEM_SETTING(alarm_wake_up_screen, | ||
216 | &global_settings.alarm_wake_up_screen, NULL); | ||
217 | #endif | ||
214 | #endif | 218 | #endif |
215 | 219 | ||
216 | /* Limits menu */ | 220 | /* Limits menu */ |
@@ -256,6 +260,9 @@ MAKE_MENU(system_menu, ID2P(LANG_SYSTEM), | |||
256 | &poweroff, | 260 | &poweroff, |
257 | #ifdef HAVE_RTC_ALARM | 261 | #ifdef HAVE_RTC_ALARM |
258 | &alarm_screen_call, | 262 | &alarm_screen_call, |
263 | #if defined(HAVE_RECORDING) || CONFIG_TUNER | ||
264 | &alarm_wake_up_screen, | ||
265 | #endif | ||
259 | #endif | 266 | #endif |
260 | &limits_menu, | 267 | &limits_menu, |
261 | #if CONFIG_CODEC == MAS3507D | 268 | #if CONFIG_CODEC == MAS3507D |