summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2003-04-23 14:38:25 +0000
committerBjörn Stenberg <bjorn@haxx.se>2003-04-23 14:38:25 +0000
commit6cafc14e75e09922cc8723773da3a7daa59fa89c (patch)
treea501256e807d257861381dbbb0545a05b85e7c59
parent82ab8283897df090371206b5bcec5b79d2e72eed (diff)
downloadrockbox-6cafc14e75e09922cc8723773da3a7daa59fa89c.tar.gz
rockbox-6cafc14e75e09922cc8723773da3a7daa59fa89c.zip
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tree.c b/apps/tree.c
index 1e10e51f80..387878c96e 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -494,7 +494,7 @@ static int showdir(char *path, int start)
494 LCD_HEIGHT - SCROLLBAR_Y, filesindir, start, 494 LCD_HEIGHT - SCROLLBAR_Y, filesindir, start,
495 start + tree_max_on_screen, VERTICAL); 495 start + tree_max_on_screen, VERTICAL);
496#endif 496#endif
497 status_draw(false); 497 status_draw(true);
498 return filesindir; 498 return filesindir;
499} 499}
500 500