BUG: 339882
FIXED-IN: 4.14.3
REVIEW: 120776
m_stopButton->show();
m_playButton->hide();
break;
+ case Phonon::StoppedState:
+ if (m_videoPlayer) {
+ m_videoPlayer->hide();
+ }
+ emit hasVideoChanged(false);
+ // fall through
default:
m_stopButton->hide();
m_playButton->show();
{
if (m_media) {
m_media->stop();
-
- m_stopButton->hide();
- m_playButton->show();
}
-
- if (m_videoPlayer) {
- m_videoPlayer->hide();
- }
-
- emit hasVideoChanged(false);
}
void PhononWidget::slotHasVideoChanged(bool hasVideo)