From 5b799b4eb74e429e6f06501b6a36e3677aae6b4f Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Mon, 25 Aug 2014 16:50:41 +0200 Subject: [PATCH] * Swap artist and track names in sidebar. --- src/libtomahawk/Source.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/Source.cpp b/src/libtomahawk/Source.cpp index 91b36bcc3..86fc7733f 100644 --- a/src/libtomahawk/Source.cpp +++ b/src/libtomahawk/Source.cpp @@ -813,7 +813,7 @@ Source::textStatus() const if ( !currentTrack().isNull() ) { - return currentTrack()->queryTrack()->artist() + " - " + currentTrack()->queryTrack()->track(); + return currentTrack()->queryTrack()->track() + " - " + currentTrack()->queryTrack()->artist(); } // do not use isOnline() here - it will always return true for the local source