diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2003-11-05 09:42:29 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2003-11-05 09:42:29 +0000 |
commit | de8b0c31a6e8889f7986c08eae0cd819f9a26608 (patch) | |
tree | 4d83efef88d38a7a4b1143d36644127ac0562bac /apps/status.c | |
parent | 0a2e2c82a9fe0c1335bc6964d41a4c1c1abe7df7 (diff) |
Now clears the buttonbar before drawing
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4017 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/status.c')
-rw-r--r-- | apps/status.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/status.c b/apps/status.c index 01929e4540..c6f4e4944c 100644 --- a/apps/status.c +++ b/apps/status.c @@ -267,6 +267,7 @@ void buttonbar_set(char* caption1, char *caption2, char *caption3) void buttonbar_draw(void) { + lcd_clearrect(0, LCD_HEIGHT-8, LCD_WIDTH, 8); draw_buttonbar_btn(0, stored_caption1); draw_buttonbar_btn(1, stored_caption2); draw_buttonbar_btn(2, stored_caption3); |