Reformatted track info in toolbar
This commit is contained in:
parent
262e99beb9
commit
d17ae08f03
1 changed files with 2 additions and 1 deletions
|
@ -311,7 +311,8 @@ class Toolbar(Gtk.Toolbar):
|
|||
|
||||
|
||||
def set_album(self, album, pos):
|
||||
info = "{0} – {1} – {2} – {3}".format(album.get_tracks()[pos].get_title(), pos+1, album.get_title(), album.get_artist())
|
||||
info = "{0} – {1} ({2}. {3})".format(album.get_artist(), album.get_title(), pos+1, album.get_tracks()[pos].get_title())
|
||||
#info = "{0} – {1} – {2} – {3}".format(album.get_tracks()[pos].get_title(), pos+1, album.get_title(), album.get_artist())
|
||||
self._track_label.set_text(info)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue