summaryrefslogtreecommitdiff
path: root/apps/menus
diff options
context:
space:
mode:
Diffstat (limited to 'apps/menus')
-rw-r--r--apps/menus/settings_menu.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/menus/settings_menu.c b/apps/menus/settings_menu.c
index 659a7f2fbb..0e3e861834 100644
--- a/apps/menus/settings_menu.c
+++ b/apps/menus/settings_menu.c
@@ -297,6 +297,10 @@ MENUITEM_SETTING(buttonlight_brightness, &global_settings.buttonlight_brightness
297MENUITEM_SETTING(touchpad_sensitivity, &global_settings.touchpad_sensitivity, NULL); 297MENUITEM_SETTING(touchpad_sensitivity, &global_settings.touchpad_sensitivity, NULL);
298#endif 298#endif
299 299
300#ifdef HAVE_QUICKSCREEN
301MENUITEM_SETTING(shortcuts_replaces_quickscreen, &global_settings.shortcuts_replaces_qs, NULL);
302#endif
303
300MAKE_MENU(system_menu, ID2P(LANG_SYSTEM), 304MAKE_MENU(system_menu, ID2P(LANG_SYSTEM),
301 0, Icon_System_menu, 305 0, Icon_System_menu,
302#if (BATTERY_CAPACITY_INC > 0) || (BATTERY_TYPES_COUNT > 1) 306#if (BATTERY_CAPACITY_INC > 0) || (BATTERY_TYPES_COUNT > 1)
@@ -306,6 +310,9 @@ MAKE_MENU(system_menu, ID2P(LANG_SYSTEM),
306 &disk_menu, 310 &disk_menu,
307#endif 311#endif
308 &limits_menu, 312 &limits_menu,
313#ifdef HAVE_QUICKSCREEN
314 &shortcuts_replaces_quickscreen,
315#endif
309#ifdef HAVE_MORSE_INPUT 316#ifdef HAVE_MORSE_INPUT
310 &morse_input, 317 &morse_input,
311#endif 318#endif