1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-28 16:20:01 +02:00

No drop shadow in audiocontrols

This commit is contained in:
Leo Franchi
2012-09-28 10:08:17 -04:00
parent 7e8154189b
commit 36c2c458a2

View File

@@ -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( Result::DropShadow, ui->ownerButton->size() );
QPixmap sourceIcon = result->sourceIcon( Result::Plain, ui->ownerButton->size() );
if ( !sourceIcon.isNull() )
ui->ownerButton->setPixmap( sourceIcon );
else