diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2006-04-03 06:08:24 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2006-04-03 06:08:24 +0000 |
| commit | 376611e9b041f4fd2b98709795d18f66205ec9db (patch) | |
| tree | 04f2e33d9a4f5338b3869991723b8443ed2fda9b /apps | |
| parent | 70c0791c7c3f5c25a6e91a107ec566abb6d77ceb (diff) | |
| download | rockbox-376611e9b041f4fd2b98709795d18f66205ec9db.zip rockbox-376611e9b041f4fd2b98709795d18f66205ec9db.tar.gz rockbox-376611e9b041f4fd2b98709795d18f66205ec9db.tar.bz2 rockbox-376611e9b041f4fd2b98709795d18f66205ec9db.tar.xz | |
Fixed wrong break; placement causing the tree to call the context menu with the quickmenu button in sub-browsers.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9449 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/tree.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/tree.c b/apps/tree.c index f492f8c..77da24d 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -728,9 +728,8 @@ static bool dirbrowse(void) id3db = check_changed_id3mode(id3db); reload_dir = true; - break; } - + break; #endif #ifdef BUTTON_F3 |