Added option to load playlists on start to the settings.

This commit is contained in:
The Wobbler 2025-02-20 17:44:09 +01:00
parent 5dc91f6605
commit 65564deb82
7 changed files with 20 additions and 6 deletions

View file

@ -23,8 +23,10 @@ class Wobuzz:
self.player = Player(self)
self.gui = GUI(self)
def post_init(self):
self.gui.track_control.track_progress_slider.post_init()
self.late_init()
def late_init(self):
self.gui.track_control.track_progress_slider.late_init()
self.library.load()
def on_settings_change(self, key, value):