From ef14a1d51be4f3ceea48f3926aa50a25b0338e2d Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Mon, 6 Oct 2014 16:53:59 +0200 Subject: [PATCH] * Fixed inbox empty text. --- src/libtomahawk/playlist/InboxView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/playlist/InboxView.cpp b/src/libtomahawk/playlist/InboxView.cpp index 582bf3cfe..bf1d21b3a 100644 --- a/src/libtomahawk/playlist/InboxView.cpp +++ b/src/libtomahawk/playlist/InboxView.cpp @@ -30,7 +30,6 @@ InboxView::InboxView( QWidget* parent ) : TrackView( parent ) { proxyModel()->setStyle( PlayableProxyModel::Fancy ); - setEmptyTip( tr( "No listening suggestions here." ) ); TrackView::setGuid( "inbox" ); setHeaderHidden( true ); @@ -84,6 +83,7 @@ InboxPage::InboxPage( QWidget* parent ) : // setCaption( tr( "Inbox Details" ) ); setPlayableModel( ViewManager::instance()->inboxModel() ); + setEmptyTip( tr( "Your friends have not shared any recommendations with you yet. Connect with them and share your musical gems!" ) ); TrackItemDelegate* delegate = new TrackItemDelegate( TrackItemDelegate::Inbox, inboxView, inboxView->proxyModel() ); inboxView->setPlaylistItemDelegate( delegate );