Change order of artist - title when song is paused/stopped in OSD
This commit is contained in:
@@ -175,8 +175,8 @@ void OSDBase::Paused() {
|
||||
else {
|
||||
summary = last_song_.PrettyTitle();
|
||||
if (!last_song_.artist().isEmpty()) {
|
||||
summary.append(" - ");
|
||||
summary.append(last_song_.artist());
|
||||
summary.prepend(" - ");
|
||||
summary.prepend(last_song_.artist());
|
||||
}
|
||||
}
|
||||
if (show_art_) {
|
||||
@@ -217,8 +217,8 @@ void OSDBase::Stopped() {
|
||||
else {
|
||||
summary = last_song_.PrettyTitle();
|
||||
if (!last_song_.artist().isEmpty()) {
|
||||
summary.append(" - ");
|
||||
summary.append(last_song_.artist());
|
||||
summary.prepend(" - ");
|
||||
summary.prepend(last_song_.artist());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user