mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-05 13:47:26 +02:00
* Show a empty-tooltip for collection views.
This commit is contained in:
@@ -305,6 +305,11 @@ ViewManager::show( const Tomahawk::collection_ptr& collection )
|
|||||||
view = new TreeView();
|
view = new TreeView();
|
||||||
TreeModel* model = new TreeModel();
|
TreeModel* model = new TreeModel();
|
||||||
view->setTreeModel( model );
|
view->setTreeModel( model );
|
||||||
|
|
||||||
|
if ( collection && collection->source()->isLocal() )
|
||||||
|
view->setEmptyTip( tr( "After you have scanned your music collection you will find your tracks right here." ) );
|
||||||
|
else
|
||||||
|
view->setEmptyTip( tr( "This collection is empty." ) );
|
||||||
|
|
||||||
model->addCollection( collection );
|
model->addCollection( collection );
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user