summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tree.c b/apps/tree.c
index 4e408b1be3..adb07e11fd 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -128,6 +128,7 @@ static int showdir(char *path, int start)
128 qsort(dircacheptr,filesindir,sizeof(struct entry*),compare); 128 qsort(dircacheptr,filesindir,sizeof(struct entry*),compare);
129 } 129 }
130 130
131 lcd_stop_scroll();
131#ifdef HAVE_NEW_CHARCELL_LCD 132#ifdef HAVE_NEW_CHARCELL_LCD
132 lcd_double_height(false); 133 lcd_double_height(false);
133#endif 134#endif
@@ -266,7 +267,6 @@ bool dirbrowse(char *root)
266 } 267 }
267 else 268 else
268 start = dircursor = 0; 269 start = dircursor = 0;
269 lcd_stop_scroll();
270 numentries = showdir(currdir, start); 270 numentries = showdir(currdir, start);
271 lcd_puts(0, LINE_Y+dircursor, CURSOR_CHAR); 271 lcd_puts(0, LINE_Y+dircursor, CURSOR_CHAR);
272 } 272 }