From 508bed5ef4a36c26b41870cfc1b40841c5082393 Mon Sep 17 00:00:00 2001 From: Alejandro Wainzinger Date: Mon, 13 Jun 2011 01:39:41 -0700 Subject: [PATCH] Add consistent display of artist before song title in Adium Plugin. Fixes TWK-225. --- src/libtomahawk/infosystem/infoplugins/adiumplugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libtomahawk/infosystem/infoplugins/adiumplugin.cpp b/src/libtomahawk/infosystem/infoplugins/adiumplugin.cpp index a589df132..0d47a1b36 100644 --- a/src/libtomahawk/infosystem/infoplugins/adiumplugin.cpp +++ b/src/libtomahawk/infosystem/infoplugins/adiumplugin.cpp @@ -152,9 +152,9 @@ AdiumPlugin::audioStarted( const QVariant &input ) return; QString nowPlaying = ""; - nowPlaying.append( hash["title"] ); - nowPlaying.append(" - "); nowPlaying.append( hash["artist"] ); + nowPlaying.append(" - "); + nowPlaying.append( hash["title"] ); nowPlaying.append( " " ); // Escape quotes, or Applescript gets confused nowPlaying.replace( "\"", "\\\"" );