diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2010-10-04 10:34:38 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2010-10-04 10:34:38 +0000 |
| commit | efbcece07b3a91f4b475559997f892e24751f0e6 (patch) | |
| tree | c7ee12626dbd268df4a94bd46b29f6fc7126d2d4 /apps/menus/recording_menu.c | |
| parent | ae75c6eb0ae9c75173ab1b06a26cad30fc5344c9 (diff) | |
| download | rockbox-efbcece07b3a91f4b475559997f892e24751f0e6.zip rockbox-efbcece07b3a91f4b475559997f892e24751f0e6.tar.gz rockbox-efbcece07b3a91f4b475559997f892e24751f0e6.tar.bz2 rockbox-efbcece07b3a91f4b475559997f892e24751f0e6.tar.xz | |
New setting to control the file browser start location.
Set using the menu item in folder context menus, clear in the filebrowser settings.
Can be abused to start selecting a *file* (or have a folder selected) instead of a starting inside a folder by removing the trailing / in the .cfg
This only affects the file browser when it would open in / before (on boot, or when entereing after backing out of the browser before (*not* when exited with the menu action)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28206 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/menus/recording_menu.c')
| -rw-r--r-- | apps/menus/recording_menu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/menus/recording_menu.c b/apps/menus/recording_menu.c index daea1ea..6a1c1d3 100644 --- a/apps/menus/recording_menu.c +++ b/apps/menus/recording_menu.c @@ -344,6 +344,7 @@ MENUITEM_SETTING(rec_prerecord_time, &global_settings.rec_prerecord_time, NULL); static int clear_rec_directory(void) { strcpy(global_settings.rec_directory, REC_BASE_DIR); + settings_save(); splash(HZ, ID2P(LANG_RESET_DONE_CLEAR)); return false; } |