1
0
Fork 0
forked from len0rd/rockbox

list widget: undo part of aaf3065

It fixed a simulator warning in the skin debug screen but broke
the icons in the database folder chooser. Proper fix shortly.

Change-Id: If366daacc440f937c40960112477b8f6136b72b9
This commit is contained in:
Jonathan Gordon 2013-02-13 09:22:24 +11:00
parent cb9258ef0f
commit 1cc0809ca2

View file

@ -277,7 +277,6 @@ 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;
}
@ -393,7 +392,6 @@ 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;
}
}