summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2012-03-28 00:38:30 +1100
committerJonathan Gordon <rockbox@jdgordon.info>2012-03-28 10:56:12 +0200
commit6f622262948f42886a3f7e602a3b6aa2bb1c6e44 (patch)
tree471905bae06f6b514a97abd74d7dbcad1be1e043 /apps/settings.h
parent7ec426e497daa1b4a6082bf4e4e3df687b11db44 (diff)
downloadrockbox-6f622262948f42886a3f7e602a3b6aa2bb1c6e44.tar.gz
rockbox-6f622262948f42886a3f7e602a3b6aa2bb1c6e44.zip
quickscreen: optionally display the shortcuts menu instead of the QS
Adds an option under settings > general settings > system to allow the user to have the shortcuts menu displayed instead of the quick screen. (option is "shortcuts instead of quickscreen" in the .cfg) Change-Id: Id679b461c40ac617629422736d1509384364084d Reviewed-on: http://gerrit.rockbox.org/199 Reviewed-by: Marek Salaba <marek.salaba@gmail.com> Reviewed-by: Jonathan Gordon <rockbox@jdgordon.info>
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h
index 777c7dbefe..fb562c9191 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -827,6 +827,9 @@ struct user_settings
827 char start_directory[MAX_PATHNAME+1]; 827 char start_directory[MAX_PATHNAME+1];
828 /* Has the root been customized from the .cfg file? false = no, true = loaded from cfg */ 828 /* Has the root been customized from the .cfg file? false = no, true = loaded from cfg */
829 bool root_menu_customized; 829 bool root_menu_customized;
830#ifdef HAVE_QUICKSCREEN
831 bool shortcuts_replaces_qs;
832#endif
830}; 833};
831 834
832/** global variables **/ 835/** global variables **/