diff options
author | Peter D'Hoye <peter.dhoye@gmail.com> | 2006-11-30 23:00:17 +0000 |
---|---|---|
committer | Peter D'Hoye <peter.dhoye@gmail.com> | 2006-11-30 23:00:17 +0000 |
commit | e10a0f038134b753050c7015cae7961910ad2924 (patch) | |
tree | bf9bf07c077230656ab8af67e559b6c42e05aded /apps/plugins/properties.c | |
parent | 7c537225350ef490aed9a9f41e01d7640ee260d8 (diff) |
Printing text right before clearing the display is not a very wise thing to do. Recursive dir scanning will now show the scanning message on top.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11632 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/properties.c')
-rw-r--r-- | apps/plugins/properties.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/properties.c b/apps/plugins/properties.c index cdfb264e27..9a0ae5d09c 100644 --- a/apps/plugins/properties.c +++ b/apps/plugins/properties.c @@ -162,8 +162,8 @@ static bool _dir_properties(DPS* dps) continue; /* skip these */ dps->dc++; /* new directory */ - rb->lcd_puts(0,0,"SCANNING..."); rb->lcd_clear_display(); + rb->lcd_puts(0,0,"SCANNING..."); rb->lcd_puts(0,1,dps->dirname); rb->lcd_puts(0,2,entry->d_name); rb->snprintf(dps->tstr, 64, "Directories: %d", dps->dc); |