diff --git a/src/libtomahawk/ViewManager.cpp b/src/libtomahawk/ViewManager.cpp index 04af86274..7de3bc6a7 100644 --- a/src/libtomahawk/ViewManager.cpp +++ b/src/libtomahawk/ViewManager.cpp @@ -45,7 +45,7 @@ #include "playlist/PlaylistLargeItemDelegate.h" #include "playlist/RecentlyPlayedModel.h" #include "playlist/dynamic/widgets/DynamicWidget.h" - +#include "resolvers/ScriptCollection.h" #include "widgets/NewReleasesWidget.h" #include "widgets/infowidgets/SourceInfoWidget.h" #include "widgets/infowidgets/ArtistInfoWidget.h" @@ -317,6 +317,9 @@ ViewManager::show( const Tomahawk::collection_ptr& collection ) if ( !collection.isNull() ) view->setEmptyTip( collection->emptyText() ); + if ( collection.objectCast() ) + view->trackView()->setEmptyTip( tr( "Cloud collections aren't supported in the flat view yet. We will have them covered soon. Switch to another view to navigate them." ) ); + m_collectionViews.insert( collection, view ); } else