summaryrefslogtreecommitdiff
path: root/apps/playlist_viewer.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/playlist_viewer.c')
-rw-r--r--apps/playlist_viewer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/playlist_viewer.c b/apps/playlist_viewer.c
index 640063bb64..087bdd1583 100644
--- a/apps/playlist_viewer.c
+++ b/apps/playlist_viewer.c
@@ -621,7 +621,7 @@ bool playlist_viewer_ex(char* filename)
621 if (!playlist_viewer_init(&viewer, filename, false)) 621 if (!playlist_viewer_init(&viewer, filename, false))
622 goto exit; 622 goto exit;
623 623
624 gui_synclist_init(&playlist_lists, playlist_callback_name, &viewer); 624 gui_synclist_init(&playlist_lists, playlist_callback_name, &viewer, false, 1);
625 gui_synclist_set_icon_callback(&playlist_lists, 625 gui_synclist_set_icon_callback(&playlist_lists,
626 global_settings.playlist_viewer_icons? 626 global_settings.playlist_viewer_icons?
627 &playlist_callback_icons:NULL); 627 &playlist_callback_icons:NULL);
@@ -873,7 +873,7 @@ bool search_playlist(void)
873 } 873 }
874 backlight_on(); 874 backlight_on();
875 gui_synclist_init(&playlist_lists, playlist_search_callback_name, 875 gui_synclist_init(&playlist_lists, playlist_search_callback_name,
876 found_indicies); 876 found_indicies, false, 1);
877 gui_synclist_set_icon_callback(&playlist_lists, 877 gui_synclist_set_icon_callback(&playlist_lists,
878 global_settings.playlist_viewer_icons? 878 global_settings.playlist_viewer_icons?
879 &playlist_search_callback_icons:NULL); 879 &playlist_search_callback_icons:NULL);