summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter D'Hoye <peter.dhoye@gmail.com>2006-11-30 23:00:17 +0000
committerPeter D'Hoye <peter.dhoye@gmail.com>2006-11-30 23:00:17 +0000
commite10a0f038134b753050c7015cae7961910ad2924 (patch)
treebf9bf07c077230656ab8af67e559b6c42e05aded
parent7c537225350ef490aed9a9f41e01d7640ee260d8 (diff)
downloadrockbox-e10a0f038134b753050c7015cae7961910ad2924.tar.gz
rockbox-e10a0f038134b753050c7015cae7961910ad2924.zip
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
-rw-r--r--apps/plugins/properties.c2
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)
162 continue; /* skip these */ 162 continue; /* skip these */
163 163
164 dps->dc++; /* new directory */ 164 dps->dc++; /* new directory */
165 rb->lcd_puts(0,0,"SCANNING...");
166 rb->lcd_clear_display(); 165 rb->lcd_clear_display();
166 rb->lcd_puts(0,0,"SCANNING...");
167 rb->lcd_puts(0,1,dps->dirname); 167 rb->lcd_puts(0,1,dps->dirname);
168 rb->lcd_puts(0,2,entry->d_name); 168 rb->lcd_puts(0,2,entry->d_name);
169 rb->snprintf(dps->tstr, 64, "Directories: %d", dps->dc); 169 rb->snprintf(dps->tstr, 64, "Directories: %d", dps->dc);