mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-15 16:12:28 -05:00
Added "Ask" option to recursive dir insert which, if enabled, will ask users whether they want to recursively insert selected dir. Also, renamed "Insert first" and "Queue first" to "Insert next" and "Queue next" respectively.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3799 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
8dd3a822c7
commit
11e7ad50a0
7 changed files with 80 additions and 20 deletions
|
|
@ -49,8 +49,13 @@ static bool save_playlist(void)
|
|||
|
||||
static bool recurse_directory(void)
|
||||
{
|
||||
return (set_bool( str(LANG_RECURSE_DIRECTORY),
|
||||
&global_settings.recursive_dir_insert));
|
||||
char* names[] = { str(LANG_OFF),
|
||||
str(LANG_ON),
|
||||
str(LANG_RESUME_SETTING_ASK) };
|
||||
|
||||
return set_option( str(LANG_RECURSE_DIRECTORY),
|
||||
&global_settings.recursive_dir_insert, INT, names, 3,
|
||||
NULL );
|
||||
}
|
||||
|
||||
bool playlist_menu(void)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue