forked from Wobbl/Wobuzz
Fixed a bug where the cache of the first track gets cleared when started by doubleclick.
This commit is contained in:
parent
027c2f6ac8
commit
b106c5eb21
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ class Player:
|
|||
self.track_progress.start()
|
||||
self.app.gui.on_track_change(previous_track, self.current_playlist.current_track)
|
||||
|
||||
if self.app.settings.clear_track_cache:
|
||||
if self.app.settings.clear_track_cache and not previous_track == self.current_playlist.current_track:
|
||||
previous_track.clear_cache()
|
||||
|
||||
def pause(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue