diff --git a/src/domain/UBGraphicsMediaItemDelegate.cpp b/src/domain/UBGraphicsMediaItemDelegate.cpp index 78072128..dcd1ae2d 100644 --- a/src/domain/UBGraphicsMediaItemDelegate.cpp +++ b/src/domain/UBGraphicsMediaItemDelegate.cpp @@ -243,6 +243,10 @@ void UBGraphicsMediaItemDelegate::mediaStatusChanged(QMediaPlayer::MediaStatus s delegated()->pause(); } + // At the end of the video, make sure the progress bar doesn't autohide + if (status == QMediaPlayer::EndOfMedia) + showToolBar(); + // in most cases, the only necessary action is to update the play/pause state updatePlayPauseState();