Skip to content

Commit

Permalink
Show song + title in the statusbar too
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiofalci committed Nov 6, 2016
1 parent 247babd commit f2fdc49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sconsify/track.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func ToSconsifyTrack(track *sp.Track) *Track {
}

func (track *Track) GetFullTitle() string {
return fmt.Sprintf("%v - %v [%v]", track.Artist.Name, track.Name, track.Duration)
return fmt.Sprintf("%v - %v [%v]", track.Name, track.Artist.Name, track.Duration)
}

func (track *Track) GetTitle() string {
Expand Down

0 comments on commit f2fdc49

Please sign in to comment.