Made the tracks also get copied into the library when loaded from a playlist.

This commit is contained in:
The Wobbler 2025-03-07 20:31:51 +01:00
parent 4ae398c6aa
commit 31b2e3bf41

View file

@ -52,4 +52,7 @@ class Popups:
self.app.library.open_playlist(playlist_path)
def import_playlist(self):
self.open_playlist() # placeholder
playlist_path = self.select_playlist_file()
if playlist_path is not None and not playlist_path == "":
self.app.library.import_playlist(playlist_path)