diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2012-03-22 20:59:01 +0100 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2012-03-22 21:05:30 +0100 |
| commit | 6e6f0c6ef35cebc2ca199ca01f12598ad0209c1c (patch) | |
| tree | dae2cf24347d1a44c20f49aacfbe53fbf5e37898 | |
| parent | 58e097d4a6c64bf762a8c30e24f16cc62c574519 (diff) | |
| download | rockbox-6e6f0c6ef35cebc2ca199ca01f12598ad0209c1c.zip rockbox-6e6f0c6ef35cebc2ca199ca01f12598ad0209c1c.tar.gz rockbox-6e6f0c6ef35cebc2ca199ca01f12598ad0209c1c.tar.bz2 rockbox-6e6f0c6ef35cebc2ca199ca01f12598ad0209c1c.tar.xz | |
Redraw simplelist if/when necessary-
Change-Id: I14a1cce8967af60a52d2d13e0b035b71fece8a63
| -rw-r--r-- | apps/gui/list.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/gui/list.c b/apps/gui/list.c index 5af4501..c01a339 100644 --- a/apps/gui/list.c +++ b/apps/gui/list.c @@ -954,6 +954,7 @@ bool simplelist_show_list(struct simplelist_info *info) break; } else if ((action == ACTION_REDRAW) || + (list_is_dirty(&lists)) || (old_line_count != simplelist_line_count)) { if (info->get_name == NULL) |