summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2012-02-29 00:03:05 +0100
committerThomas Martitz <kugel@rockbox.org>2012-02-29 00:05:40 +0100
commite958aeeb765f26411544da6312bad282a5f0c867 (patch)
treee2f791fdde68e56acb17a5179cd81a86ab9c31dd
parent8c0c844b7bde042f711a4ecffaa03d38eb89bce7 (diff)
downloadrockbox-e958aeeb765f26411544da6312bad282a5f0c867.tar.gz
rockbox-e958aeeb765f26411544da6312bad282a5f0c867.zip
root menu ordering: Remove underscores from the config setting.
The very vast majority doesn't have an underscore. There are a few exceptions but there shouldn't be introduced even more. Change-Id: I18d9bf86b5588f8a22a7a96d2dbea61fde4aba61
-rw-r--r--apps/settings_list.c2
-rw-r--r--manual/advanced_topics/main.tex6
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index c4d4d27f45..5e4a07c6ee 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -1923,7 +1923,7 @@ const struct settings_list settings[] = {
1923#endif 1923#endif
1924 CUSTOM_SETTING(0, root_menu, 1924 CUSTOM_SETTING(0, root_menu,
1925 LANG_ROCKBOX_TITLE, /* lang string here is never actually used */ 1925 LANG_ROCKBOX_TITLE, /* lang string here is never actually used */
1926 NULL, "root_menu_order", 1926 NULL, "root menu order",
1927 root_menu_load_from_cfg, root_menu_write_to_cfg, 1927 root_menu_load_from_cfg, root_menu_write_to_cfg,
1928 root_menu_is_changed, root_menu_set_default), 1928 root_menu_is_changed, root_menu_set_default),
1929}; 1929};
diff --git a/manual/advanced_topics/main.tex b/manual/advanced_topics/main.tex
index eaa0494691..25eff05827 100644
--- a/manual/advanced_topics/main.tex
+++ b/manual/advanced_topics/main.tex
@@ -8,10 +8,10 @@
8It is possible to customise the main menu, i.e. to reorder or to hide some 8It is possible to customise the main menu, i.e. to reorder or to hide some
9of its items. To accomplish this, the file \fname{/.rockbox/config.cfg} must 9of its items. To accomplish this, the file \fname{/.rockbox/config.cfg} must
10be edited (presumably on the computer while the \dap{} is connected to it 10be edited (presumably on the computer while the \dap{} is connected to it
11via USB). There, the line starting with \config{root\_menu\_order:} must 11via USB). There, the line starting with \config{root~menu~order:} must
12be edited (or created if it is not present yet). 12be edited (or created if it is not present yet).
13 13
14The line should look like \config{root\_menu\_order:items}, where ``items'' 14The line should look like \config{root~menu~order:items}, where ``items''
15is a comma separated list (no spaces around the commas!) of the following 15is a comma separated list (no spaces around the commas!) of the following
16words: \config{bookmarks}, \config{files}, \opt{database}{\config{database}, }% 16words: \config{bookmarks}, \config{files}, \opt{database}{\config{database}, }%
17\config{wps}, \config{settings}, \opt{recording}{\config{recording}, }% 17\config{wps}, \config{settings}, \opt{recording}{\config{recording}, }%
@@ -23,7 +23,7 @@ in the list. The items whose words do not occur in the list will be hidden,
23with one exception: the menu item ``Settings'' will be shown even if its word 23with one exception: the menu item ``Settings'' will be shown even if its word
24is not in the list (it is added as the last item then). 24is not in the list (it is added as the last item then).
25 25
26Use the line \config{root\_menu\_order:-} to reset the menu order 26Use the line \config{root~menu~order:-} to reset the menu order
27 27
28Only the main menu can be customised this way, submenus can not. 28Only the main menu can be customised this way, submenus can not.
29 29