1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-21 16:31:58 +02:00

* Simplify code.

This commit is contained in:
Christian Muehlhaeuser 2012-04-15 07:18:27 +02:00
parent ae2b09ab4e
commit 8bac05eb97

@ -587,12 +587,7 @@ AudioControls::droppedTracks( QList< query_ptr > tracks )
{
// queue and play the first no matter what
GlobalActionManager::instance()->handlePlayTrack( tracks.first() );
// just queue the rest
for ( int i = 1; i < tracks.size(); i++ )
{
ViewManager::instance()->queue()->model()->append( tracks[ i ] );
}
ViewManager::instance()->queue()->model()->append( tracks );
}
}