diff options
author | Jens Arnold <amiconn@rockbox.org> | 2007-04-06 22:55:00 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2007-04-06 22:55:00 +0000 |
commit | f9b90e91031dbd23fed24e832de4d8d2e15151a0 (patch) | |
tree | 964a492f1c4a658ec0ecb82d100ce62d2f6ec93a /apps/plugins/properties.c | |
parent | a5d7309d96cca974e1524dc746482ab2a26d7395 (diff) |
Now charcell displays require lcd_update() for updating the main lcd content like bitmap displays.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13050 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/properties.c')
-rw-r--r-- | apps/plugins/properties.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/plugins/properties.c b/apps/plugins/properties.c index e9c57c049b..ee7ff86cb7 100644 --- a/apps/plugins/properties.c +++ b/apps/plugins/properties.c @@ -173,9 +173,8 @@ static bool _dir_properties(DPS* dps) rb->snprintf(dps->tstr, 64, "Size: %s", filesize2string(dps->bc, dps->tstr2, 64)); rb->lcd_puts(0,5,dps->tstr); -#ifdef HAVE_LCD_BITMAP rb->lcd_update(); -#endif + /* recursion */ result = _dir_properties(dps); } @@ -302,9 +301,8 @@ enum plugin_status plugin_start(struct plugin_api* api, void* file) rb->lcd_clear_display(); rb->lcd_puts(0,0,"File/Dir not found:"); rb->lcd_puts(0,1,(char*)file); -#ifdef HAVE_LCD_BITMAP rb->lcd_update(); -#endif + rb->action_userabort(TIMEOUT_BLOCK); return PLUGIN_OK; } |