Skip to content
Snippets Groups Projects

[fix] Fix play/pause icon in controller bar

Merged Timothée Couble requested to merge fix/PlayPauseController into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -153,7 +153,7 @@ void lqPlayerControlsController::onPause()
pqLiveSourceBehavior::pause();
}
// Manually notify toolbar
Q_EMIT this->playing(!paused);
Q_EMIT this->playing(paused);
}
}
@@ -182,7 +182,7 @@ void lqPlayerControlsController::onPlay()
pqLiveSourceBehavior::pause();
}
// Manually notify toolbar
Q_EMIT this->playing(!paused);
Q_EMIT this->playing(paused);
}
}
//-----------------------------------------------------------------------------
Loading