Skip to content

playlistdialog: Use a model which only contains user playlists

Jean Felder requested to merge wip/jfelder/playlistdialog-use-user-model into master

PlaylistDialog only displays the user playlists because the smart playlists are automatically generated. However, PlaylistDialog uses model which contains user and smart playlists. Thus, the function which creates the ListBox rows discards the smart playlists and returns None. This results in GTK errors, because a GTK widget is supposed to be returned.

Fix the issue by adding a new model which only contains the user playlists.

Merge request reports