diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2003-04-23 14:38:25 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2003-04-23 14:38:25 +0000 |
| commit | 6cafc14e75e09922cc8723773da3a7daa59fa89c (patch) | |
| tree | a501256e807d257861381dbbb0545a05b85e7c59 | |
| parent | 82ab8283897df090371206b5bcec5b79d2e72eed (diff) | |
| download | rockbox-6cafc14e75e09922cc8723773da3a7daa59fa89c.zip rockbox-6cafc14e75e09922cc8723773da3a7daa59fa89c.tar.gz rockbox-6cafc14e75e09922cc8723773da3a7daa59fa89c.tar.bz2 rockbox-6cafc14e75e09922cc8723773da3a7daa59fa89c.tar.xz | |
showdir() should always redraw status bar
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3591 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tree.c b/apps/tree.c index 1e10e51..387878c 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -494,7 +494,7 @@ static int showdir(char *path, int start) LCD_HEIGHT - SCROLLBAR_Y, filesindir, start, start + tree_max_on_screen, VERTICAL); #endif - status_draw(false); + status_draw(true); return filesindir; } |