summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-04-10 17:36:55 +0000
committerJens Arnold <amiconn@rockbox.org>2005-04-10 17:36:55 +0000
commitcef15c6efc2a0720a8b9b27cea036fc6ac82c829 (patch)
tree0d0471293e7d14b39a56084c7876f749d15248cf /apps/recorder
parent06068b451d80a5949b080d756e082126245da180 (diff)
downloadrockbox-cef15c6efc2a0720a8b9b27cea036fc6ac82c829.tar.gz
rockbox-cef15c6efc2a0720a8b9b27cea036fc6ac82c829.zip
FM preset menu: Set cursor to the current preset on enter. Added a generic function to the menu system which allows for setting the position.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6264 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder')
-rw-r--r--apps/recorder/radio.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c
index 10a513f01f..59dd9dc37f 100644
--- a/apps/recorder/radio.c
+++ b/apps/recorder/radio.c
@@ -817,6 +817,8 @@ bool handle_radio_presets(void)
817 str(LANG_FM_BUTTONBAR_ADD), 817 str(LANG_FM_BUTTONBAR_ADD),
818 str(LANG_FM_BUTTONBAR_EXIT), 818 str(LANG_FM_BUTTONBAR_EXIT),
819 str(LANG_FM_BUTTONBAR_ACTION)); 819 str(LANG_FM_BUTTONBAR_ACTION));
820 if (curr_preset >= 0)
821 menu_set_cursor(preset_menu, curr_preset);
820 result = menu_show(preset_menu); 822 result = menu_show(preset_menu);
821 menu_exit(preset_menu); 823 menu_exit(preset_menu);
822 if (result == MENU_SELECTED_EXIT) 824 if (result == MENU_SELECTED_EXIT)