summaryrefslogtreecommitdiff
path: root/apps/debug_menu.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-10-21 13:47:43 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-10-21 13:47:43 +0000
commit0465101f92e45c06009a4d94079cea2218734785 (patch)
treea76c9920bb7d4ed3135cf072a9d0dd097dfea9fd /apps/debug_menu.c
parentc1051549b93d1905602ba25409cbd8f4a607c3b5 (diff)
downloadrockbox-0465101f92e45c06009a4d94079cea2218734785.tar.gz
rockbox-0465101f92e45c06009a4d94079cea2218734785.zip
allow simplelists to set the timeout and the start selection.
set a slightly saner default timeout talk the selected item when the list is first displayed git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15247 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r--apps/debug_menu.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 81f1c58d55..5bb8a8b1fc 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -1880,6 +1880,7 @@ static bool dbg_tagcache_info(void)
1880 simplelist_info_init(&info, "Database Info", 8, NULL); 1880 simplelist_info_init(&info, "Database Info", 8, NULL);
1881 info.action_callback = database_callback; 1881 info.action_callback = database_callback;
1882 info.hide_selection = true; 1882 info.hide_selection = true;
1883 info.timeout = TIMEOUT_NOBLOCK;
1883 tagcache_screensync_enable(true); 1884 tagcache_screensync_enable(true);
1884 return simplelist_show_list(&info); 1885 return simplelist_show_list(&info);
1885} 1886}