From e1441ae4972dac268ecce4a528db09317809dad4 Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Thu, 27 Sep 2012 23:06:46 -0400 Subject: [PATCH] Try a drop shadow for the source icon in AudioControls as well --- src/AudioControls.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AudioControls.cpp b/src/AudioControls.cpp index fabc815a6..94c3cdd6c 100644 --- a/src/AudioControls.cpp +++ b/src/AudioControls.cpp @@ -264,7 +264,7 @@ AudioControls::onPlaybackLoading( const Tomahawk::result_ptr& result ) ui->loveButton->setToolTip( tr( "Love" ) ); ui->ownerButton->setToolTip( QString( tr( "Playing from %1" ) ).arg( result->friendlySource() ) ); - QPixmap sourceIcon = result->sourceIcon( ui->ownerButton->size() ); + QPixmap sourceIcon = result->sourceIcon( Result::DropShadow, ui->ownerButton->size() ); if ( !sourceIcon.isNull() ) ui->ownerButton->setPixmap( sourceIcon ); else