diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-08-22 22:53:12 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-08-22 22:53:12 +0000 |
| commit | 634551ffeb2734b863cc1b3db20302c57c155c2d (patch) | |
| tree | 979cc73e784befb58efc86ad317abad1a46306f1 | |
| parent | 518e1ec1e420e6d9ea55e0f1af9ad1b1519eeeb8 (diff) | |
| download | rockbox-634551ffeb2734b863cc1b3db20302c57c155c2d.zip rockbox-634551ffeb2734b863cc1b3db20302c57c155c2d.tar.gz rockbox-634551ffeb2734b863cc1b3db20302c57c155c2d.tar.bz2 rockbox-634551ffeb2734b863cc1b3db20302c57c155c2d.tar.xz | |
statusbar bug fix when going to the menu from the dir browser
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1933 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/tree.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/tree.c b/apps/tree.c index 0e4a196..8718252 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -641,10 +641,6 @@ bool dirbrowse(char *root) bool lastsortcase = global_settings.sort_case; bool show_hidden_files = global_settings.show_hidden_files; -#ifdef HAVE_LCD_BITMAP - bool laststate=statusbar(false); -#endif - lcd_stop_scroll(); main_menu(); /* do we need to rescan dir? */ @@ -653,9 +649,6 @@ bool dirbrowse(char *root) show_hidden_files != global_settings.show_hidden_files) lastdir[0] = 0; restore = true; -#ifdef HAVE_LCD_BITMAP - statusbar(laststate); -#endif break; } |