mirror of
https://github.com/strawberrymusicplayer/strawberry
synced 2025-02-10 08:40:43 +01:00
Change order of artist - title when song is paused/stopped in OSD
This commit is contained in:
parent
09cdba4b3d
commit
45ac80dd8c
@ -175,8 +175,8 @@ void OSDBase::Paused() {
|
|||||||
else {
|
else {
|
||||||
summary = last_song_.PrettyTitle();
|
summary = last_song_.PrettyTitle();
|
||||||
if (!last_song_.artist().isEmpty()) {
|
if (!last_song_.artist().isEmpty()) {
|
||||||
summary.append(" - ");
|
summary.prepend(" - ");
|
||||||
summary.append(last_song_.artist());
|
summary.prepend(last_song_.artist());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (show_art_) {
|
if (show_art_) {
|
||||||
@ -217,8 +217,8 @@ void OSDBase::Stopped() {
|
|||||||
else {
|
else {
|
||||||
summary = last_song_.PrettyTitle();
|
summary = last_song_.PrettyTitle();
|
||||||
if (!last_song_.artist().isEmpty()) {
|
if (!last_song_.artist().isEmpty()) {
|
||||||
summary.append(" - ");
|
summary.prepend(" - ");
|
||||||
summary.append(last_song_.artist());
|
summary.prepend(last_song_.artist());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user