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:
The Wobbler 2025-02-19 19:04:36 +01:00
parent db191cbc44
commit 730e070dfc

View file

@ -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: