1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-30 19:00:12 +02:00

* Fixed queue not allowing to remove items from it.

This commit is contained in:
Christian Muehlhaeuser
2011-08-14 03:14:39 +02:00
parent 7d8e29a932
commit 989243914c
4 changed files with 8 additions and 4 deletions

View File

@@ -89,6 +89,7 @@ ViewManager::ViewManager( QObject* parent )
m_queueView = new QueueView( m_splitter );
m_queueModel = new PlaylistModel( m_queueView );
m_queueView->queue()->setPlaylistModel( m_queueModel );
m_queueView->queue()->playlistModel()->setReadOnly( false );
AudioEngine::instance()->setQueue( m_queueView->queue()->proxyModel() );
m_splitter->addWidget( m_queueView );