Removed some mechanic that is going to be reimplemented.
This commit is contained in:
parent
67d353dcef
commit
bedca22ca6
9 changed files with 24 additions and 28 deletions
|
@ -18,7 +18,7 @@ class Player:
|
|||
self.track_progress = TrackProgress(self.app)
|
||||
|
||||
self.history = Playlist(self.app, "History")
|
||||
self.current_playlist = Playlist(self.app, "None")
|
||||
self.current_playlist = None
|
||||
|
||||
self.playing = False
|
||||
self.paused = False
|
||||
|
@ -134,7 +134,7 @@ class Player:
|
|||
self.music_channel.stop()
|
||||
self.track_progress.stop()
|
||||
|
||||
if not self.current_playlist.current_track is None:
|
||||
if self.current_playlist is not None and self.current_playlist.current_track is not None:
|
||||
self.current_sound_duration = self.current_playlist.current_track.duration
|
||||
|
||||
self.playing = False
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue