1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-12 09:04:33 +02:00

Fixed emitting current time instead of total time to update timers.

This commit is contained in:
Christian Muehlhaeuser
2015-04-18 05:35:56 +02:00
parent f9636ecb65
commit 78f0896342

View File

@@ -345,7 +345,7 @@ AudioOutput::setTotalTime( qint64 time )
{
m_totalTime = time;
// emit current time to refresh total time
emit tick( time );
emit tick( m_currentTime );
}
}