Fixed some progress bar bugs again.

This commit is contained in:
The Wobbler 2024-12-22 17:20:18 +01:00
parent d453afc6d0
commit 19563930c5
2 changed files with 14 additions and 4 deletions

View file

@ -18,5 +18,5 @@ class GUI:
self.window.main_container.track_control.previous_button.triggered.connect(self.app.player.previous_track)
self.window.main_container.track_control.toggle_play_button.triggered.connect(self.app.player.toggle_playing)
self.window.main_container.track_control.stop_button.triggered.connect(self.app.player.stop)
self.window.main_container.track_control.next_button.triggered.connect(self.app.player.skip_current)
self.window.main_container.track_control.next_button.triggered.connect(self.app.player.next_track)