diff --git a/app/viewer/mediapanel.cpp b/app/viewer/mediapanel.cpp index bb90357..d806f32 100644 --- a/app/viewer/mediapanel.cpp +++ b/app/viewer/mediapanel.cpp @@ -420,7 +420,9 @@ void MediaPanel::Play(bool e) m_PlaybackStart = QDateTime::currentMSecsSinceEpoch(); m_PlaybackTimer->start(); + m_PlayBtn->setText("Pause"); } else { + m_PlayBtn->setText("Play"); m_PlaybackTimer->stop(); } m_PlayBtn->setChecked(e);