summaryrefslogtreecommitdiff
path: root/apps/cuesheet.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2008-03-26 03:35:24 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2008-03-26 03:35:24 +0000
commit5ca15399690a686646d4739b3f4c51c62cc88b68 (patch)
tree1c12dc34bae30aedcb38bf5ceed8a2fcedc250c8 /apps/cuesheet.c
parentaf395f4db6ad7b83f9d9afefb1c0ceeedd140a45 (diff)
downloadrockbox-5ca15399690a686646d4739b3f4c51c62cc88b68.tar.gz
rockbox-5ca15399690a686646d4739b3f4c51c62cc88b68.zip
the menu and list now accepts a parent viewport to draw in (and the menu can be told to not show status/button bars). This lays the groundwork to fix colour problems with plugin menus (see star.c for an example.) This hopefully fixes some button bar issues as well as theme problems.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16812 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/cuesheet.c')
-rw-r--r--apps/cuesheet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/cuesheet.c b/apps/cuesheet.c
index cac644805f..9c23d817be 100644
--- a/apps/cuesheet.c
+++ b/apps/cuesheet.c
@@ -292,7 +292,7 @@ void browse_cuesheet(struct cuesheet *cue)
292 struct mp3entry *id3 = audio_current_track(); 292 struct mp3entry *id3 = audio_current_track();
293 293
294 snprintf(title, MAX_PATH, "%s: %s", cue->performer, cue->title); 294 snprintf(title, MAX_PATH, "%s: %s", cue->performer, cue->title);
295 gui_synclist_init(&lists, list_get_name_cb, cue, false, 2); 295 gui_synclist_init(&lists, list_get_name_cb, cue, false, 2, NULL);
296 gui_synclist_set_nb_items(&lists, 2*cue->track_count); 296 gui_synclist_set_nb_items(&lists, 2*cue->track_count);
297 gui_synclist_set_title(&lists, title, 0); 297 gui_synclist_set_title(&lists, title, 0);
298 298