1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 07:49:42 +01:00

* Set empty-tooltips for Loved-, Recent Additions- and Recent Plays views.

This commit is contained in:
Christian Muehlhaeuser 2012-06-01 08:46:51 +02:00
parent ba82de45b5
commit 4efafaede1

View File

@ -506,6 +506,7 @@ SourceItem::lovedTracksClicked()
PlaylistLargeItemDelegate* del = new PlaylistLargeItemDelegate( PlaylistLargeItemDelegate::LovedTracks, view, view->proxyModel() );
connect( del, SIGNAL( updateIndex( QModelIndex ) ), view, SLOT( update( QModelIndex ) ) );
view->setItemDelegate( del );
view->setEmptyTip( tr( "Sorry, we could not find any loved tracks!" ) );
m_lovedTracksPage = view;
}
@ -546,6 +547,7 @@ SourceItem::latestAdditionsClicked()
cv->setPlayableModel( raModel );
cv->sortByColumn( PlayableModel::Age, Qt::DescendingOrder );
cv->setEmptyTip( tr( "Sorry, we could not find any recent additions!" ) );
m_latestAdditionsPage = cv;
}
@ -585,6 +587,7 @@ SourceItem::recentPlaysClicked()
pv->setItemDelegate( del );
pv->setPlaylistModel( raModel );
pv->setEmptyTip( tr( "Sorry, we could not find any recent plays!" ) );
m_recentPlaysPage = pv;
}