diff --git a/resources.qrc b/resources.qrc
index 2360b353b..56f3e53c0 100644
--- a/resources.qrc
+++ b/resources.qrc
@@ -10,6 +10,7 @@
data/images/not-loved.png
data/images/no-album-art-placeholder.png
data/images/no-artist-image-placeholder.png
+ data/images/track-placeholder.png
data/images/now-playing-panel.png
data/images/now-playing-speaker.png
data/images/pause-pressed.png
diff --git a/src/libtomahawk/playlist/playlistitemdelegate.cpp b/src/libtomahawk/playlist/playlistitemdelegate.cpp
index c0e965077..3b0a653f5 100644
--- a/src/libtomahawk/playlist/playlistitemdelegate.cpp
+++ b/src/libtomahawk/playlist/playlistitemdelegate.cpp
@@ -184,13 +184,11 @@ PlaylistItemDelegate::paintShort( QPainter* painter, const QStyleOptionViewItem&
else
lowerText = QString( "played %1 ago by %2" ).arg( playtime ).arg( source->friendlyName() );
- pixmap = source->avatar();
+// pixmap = source->avatar();
}
if ( pixmap.isNull() )
- pixmap = QPixmap( RESPATH "images/user-avatar.png" );
-
- pixmap = TomahawkUtils::createAvatarFrame( pixmap );
+ pixmap = QPixmap( RESPATH "images/track-placeholder.png" );
painter->save();
{