From 45ac80dd8c05db284dd1646f7262b5826ad62a98 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Wed, 30 Sep 2020 01:14:00 +0200 Subject: [PATCH] Change order of artist - title when song is paused/stopped in OSD --- src/osd/osdbase.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/osd/osdbase.cpp b/src/osd/osdbase.cpp index f2f14809c..d716d7dad 100644 --- a/src/osd/osdbase.cpp +++ b/src/osd/osdbase.cpp @@ -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()); } }