summaryrefslogtreecommitdiffstats
path: root/apps/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tree.c')
-rw-r--r--apps/tree.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/tree.c b/apps/tree.c
index ac0e44c7f1..484ed672cd 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -1186,16 +1186,20 @@ bool create_playlist(void)
bool rockbox_browse(const char *root, int dirfilter)
{
static struct tree_context backup;
-
+ int last_context;
+
backup = tc;
reload_dir = true;
memcpy(tc.currdir, root, sizeof(tc.currdir));
start_wps = false;
tc.dirfilter = &dirfilter;
-
+ last_context = curr_context;
+
dirbrowse();
tc = backup;
+ curr_context = last_context;
+
return false;
}