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

* Immediately clear the a source's current track pointer after playback finished.

This commit is contained in:
Christian Muehlhaeuser 2012-06-07 08:07:51 +02:00
parent 94a8aaced7
commit e550ffe2b0

View File

@ -362,7 +362,7 @@ Source::playlistInterface()
void
Source::onPlaybackStarted( const Tomahawk::query_ptr& query, unsigned int duration )
{
qDebug() << Q_FUNC_INFO << query->toString();
tLog( LOGVERBOSE ) << Q_FUNC_INFO << query->toString();
m_currentTrack = query;
m_currentTrackTimer.start( duration * 1000 + 900000 ); // duration comes in seconds
@ -376,10 +376,10 @@ Source::onPlaybackStarted( const Tomahawk::query_ptr& query, unsigned int durati
void
Source::onPlaybackFinished( const Tomahawk::query_ptr& query )
{
qDebug() << Q_FUNC_INFO << query->toString();
tDebug() << Q_FUNC_INFO << query->toString();
emit playbackFinished( query );
m_currentTrackTimer.start();
m_currentTrack.clear();
}