Fixed a bug by setting Playlist.loaded to True on creation of new playlists so creating new playlists works again.
This commit is contained in:
parent
db191cbc44
commit
730e070dfc
1 changed files with 2 additions and 0 deletions
|
@ -69,6 +69,8 @@ class Library:
|
|||
|
||||
def new_playlist(self):
|
||||
playlist = Playlist(self.app, self.app.utils.unique_name("New Playlist"))
|
||||
playlist.loaded = True
|
||||
|
||||
self.playlists.append(playlist)
|
||||
|
||||
for library_dock in self.library_docks:
|
||||
|
|
Loading…
Add table
Reference in a new issue