diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2008-11-03 11:11:07 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2008-11-03 11:11:07 +0000 |
| commit | edcacaa787d770cd5b944c18082b5b80128f7e4e (patch) | |
| tree | c9c15530510a02327bcd20808ac470304781879e /apps/settings.h | |
| parent | 5395957549c9b04fefa87a0aedb6bc15bf360739 (diff) | |
| download | rockbox-edcacaa787d770cd5b944c18082b5b80128f7e4e.zip rockbox-edcacaa787d770cd5b944c18082b5b80128f7e4e.tar.gz rockbox-edcacaa787d770cd5b944c18082b5b80128f7e4e.tar.bz2 rockbox-edcacaa787d770cd5b944c18082b5b80128f7e4e.tar.xz | |
FS#9515 - customisable quickscreen. Allows you to choose which setting you want displayed on the quickscreen.
Allows almost every available setting. (change the options in settings > general settings > quickscreen items)
Not every setting will work perfectly, some might need aditional handling if the change doesnt take effect straight away (let us know which are problematic so they can be fixed)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18984 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
| -rw-r--r-- | apps/settings.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h index 8c20605..8448059 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -751,6 +751,12 @@ struct user_settings #ifdef HAVE_TOUCHPAD_SENSITIVITY_SETTING int touchpad_sensitivity; #endif +#ifdef HAVE_QUICKSCREEN + /* these are split because settings_list cant handle arrays */ + int qs_item_left; + int qs_item_right; + int qs_item_bottom; +#endif }; /** global variables **/ |