Added player.stop() call in the close_event, so the player definitely stops, even when a playlist is still loading / saving.

This commit is contained in:
The Wobbler 2025-03-01 17:29:31 +01:00
parent 8d74c1e14c
commit 012447ca47
2 changed files with 2 additions and 5 deletions

View file

@ -55,6 +55,7 @@ class GUI:
self.settings.update_all()
def on_exit(self, event):
self.app.player.stop()
self.app.library.on_exit(event)
self.app.settings.window_size = (self.window.width(), self.window.height())