1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-01 03:40:16 +02:00

* Prevent flickering on pause / resume.

This commit is contained in:
Christian Muehlhaeuser
2014-09-03 02:56:15 +02:00
parent eb4f1a1bfc
commit 9390c280d5

View File

@@ -444,8 +444,8 @@ void
AudioControls::onPlaybackPaused() AudioControls::onPlaybackPaused()
{ {
tDebug( LOGEXTRA ) << Q_FUNC_INFO; tDebug( LOGEXTRA ) << Q_FUNC_INFO;
ui->playPauseButton->setVisible( true );
ui->pauseButton->setVisible( false ); ui->pauseButton->setVisible( false );
ui->playPauseButton->setVisible( true );
m_sliderTimeLine.setPaused( true ); m_sliderTimeLine.setPaused( true );
} }