summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-08-22 22:53:12 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-08-22 22:53:12 +0000
commit634551ffeb2734b863cc1b3db20302c57c155c2d (patch)
tree979cc73e784befb58efc86ad317abad1a46306f1 /apps
parent518e1ec1e420e6d9ea55e0f1af9ad1b1519eeeb8 (diff)
downloadrockbox-634551ffeb2734b863cc1b3db20302c57c155c2d.tar.gz
rockbox-634551ffeb2734b863cc1b3db20302c57c155c2d.zip
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
Diffstat (limited to 'apps')
-rw-r--r--apps/tree.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/tree.c b/apps/tree.c
index 0e4a1962bc..8718252ac5 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -641,10 +641,6 @@ bool dirbrowse(char *root)
641 bool lastsortcase = global_settings.sort_case; 641 bool lastsortcase = global_settings.sort_case;
642 bool show_hidden_files = global_settings.show_hidden_files; 642 bool show_hidden_files = global_settings.show_hidden_files;
643 643
644#ifdef HAVE_LCD_BITMAP
645 bool laststate=statusbar(false);
646#endif
647
648 lcd_stop_scroll(); 644 lcd_stop_scroll();
649 main_menu(); 645 main_menu();
650 /* do we need to rescan dir? */ 646 /* do we need to rescan dir? */
@@ -653,9 +649,6 @@ bool dirbrowse(char *root)
653 show_hidden_files != global_settings.show_hidden_files) 649 show_hidden_files != global_settings.show_hidden_files)
654 lastdir[0] = 0; 650 lastdir[0] = 0;
655 restore = true; 651 restore = true;
656#ifdef HAVE_LCD_BITMAP
657 statusbar(laststate);
658#endif
659 break; 652 break;
660 } 653 }
661 654