diff --git a/src/audiocontrols.cpp b/src/audiocontrols.cpp index fa4635433..f680ba9b4 100644 --- a/src/audiocontrols.cpp +++ b/src/audiocontrols.cpp @@ -238,6 +238,7 @@ AudioControls::onPlaybackLoading( const Tomahawk::result_ptr& result ) ui->timeLabel->setText( TomahawkUtils::timeToString( 0 ) ); ui->timeLeftLabel->setFixedWidth( ui->timeLeftLabel->fontMetrics().width( QString( duration.length() + 1, QChar( '0' ) ) ) ); ui->timeLeftLabel->setText( "-" + duration ); + m_lastTextSecondShown = 0; ui->stackedLayout->setCurrentWidget( ui->pauseButton ); @@ -357,8 +358,12 @@ void AudioControls::onPlaybackTimer( qint64 msElapsed ) { const int seconds = msElapsed / 1000; - ui->timeLabel->setText( TomahawkUtils::timeToString( seconds ) ); - ui->timeLeftLabel->setText( "-" + TomahawkUtils::timeToString( m_currentTrack->duration() - seconds ) ); + if ( seconds != m_lastTextSecondShown ) + { + ui->timeLabel->setText( TomahawkUtils::timeToString( seconds ) ); + ui->timeLeftLabel->setText( "-" + TomahawkUtils::timeToString( m_currentTrack->duration() - seconds ) ); + m_lastTextSecondShown = seconds; + } //tDebug( LOGEXTRA ) << Q_FUNC_INFO << "msElapsed =" << msElapsed << "and timer current time =" << m_sliderTimeLine.currentTime() << "and m_seekMsecs =" << m_seekMsecs; if ( msElapsed > 0 && msElapsed != m_lastSliderCheck && m_seekMsecs == -1 && msElapsed - 500 < m_lastSliderCheck ) diff --git a/src/audiocontrols.h b/src/audiocontrols.h index 4ec9f585a..b7adf31b8 100644 --- a/src/audiocontrols.h +++ b/src/audiocontrols.h @@ -100,6 +100,7 @@ private: qint64 m_seekMsecs; qint64 m_lastSliderCheck; bool m_noTimeChange; + qint64 m_lastTextSecondShown; }; #endif // AUDIOCONTROLS_H