diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2013-02-12 21:00:05 +1100 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2013-02-12 21:01:13 +1100 |
commit | aaf30651df27e0eb6fab876502fa1e6c084160bf (patch) | |
tree | 57601fbe5e54ed290bc6c966b059af801bd0d1bb /apps/gui/bitmap | |
parent | 69228f92dbddc9940166c0d7af2b4c79d55f85e7 (diff) |
skin_engine: Add a debug screen to display skin ram usage
Change-Id: Ida9c33211d9360ac88e30a2cf8df9f191bee8b45
Diffstat (limited to 'apps/gui/bitmap')
-rw-r--r-- | apps/gui/bitmap/list.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/gui/bitmap/list.c b/apps/gui/bitmap/list.c index 191446e186..ede0de8881 100644 --- a/apps/gui/bitmap/list.c +++ b/apps/gui/bitmap/list.c @@ -277,6 +277,7 @@ void list_draw(struct screen *display, struct gui_synclist *list) list_icons.x += indent; list_text_vp->x += indent; } + list_icons.width -= indent; list_text_vp->width -= indent; } @@ -392,6 +393,7 @@ void list_draw(struct screen *display, struct gui_synclist *list) list_icons.x -= indent; list_text_vp->x -= indent; } + list_icons.width += indent; list_text_vp->width += indent; } } |