From 660c0120caa7229310c0bccc382f51507a3f6332 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Tue, 2 Sep 2014 05:56:41 +0200 Subject: [PATCH] * If no source avatar is avail, return big tinted default collection image for collection's bigIcon. --- src/libtomahawk/collection/Collection.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libtomahawk/collection/Collection.cpp b/src/libtomahawk/collection/Collection.cpp index 4b3d6e889..01eee09ee 100644 --- a/src/libtomahawk/collection/Collection.cpp +++ b/src/libtomahawk/collection/Collection.cpp @@ -93,7 +93,8 @@ Collection::bigIcon() const { if ( !source()->avatar().isNull() ) return source()->avatar( TomahawkUtils::RoundedCorners ); - return TomahawkUtils::defaultPixmap( TomahawkUtils::SuperCollection ); + + return TomahawkUtils::tinted( TomahawkUtils::defaultPixmap( TomahawkUtils::DefaultCollection ), Qt::white ); }