1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-20 04:41:36 +02:00

* RecentPlaylistsModel needs to manually load playlists now.

This commit is contained in:
Christian Muehlhaeuser
2013-04-26 02:43:00 +02:00
parent babc3cf0d3
commit 737b8e46ae

View File

@@ -115,6 +115,9 @@ RecentPlaylistsModel::playlistsLoaded( const QList<DatabaseCommand_LoadAllSorted
}
connect( pl.data(), SIGNAL( changed() ), this, SLOT( updatePlaylist() ) );
m_playlists << pl;
if ( !pl->loaded() )
pl->loadRevision();
}
endResetModel();