Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/d562cd103e5b4b719647d28188c847218da3e8cd?style=split&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

ticker would not always be updated on osx

preferencesAboutTextFull
Clément Fauconnier 3 years ago
parent 57d692af88
commit d562cd103e
  1. 6
      src/domain/UBGraphicsMediaItemDelegate.cpp

@ -275,8 +275,12 @@ void UBGraphicsMediaItemDelegate::mediaStateChanged(QMediaPlayer::State state)
// updatePlayPauseState handles this functionality // updatePlayPauseState handles this functionality
if (state == QMediaPlayer::StoppedState) if (state == QMediaPlayer::StoppedState)
{
delegated()->setMediaPos(0); delegated()->setMediaPos(0);
#ifdef Q_OS_OSX //media positionChanged signal is not always called in osx
mMediaControl->updateTicker(0);
#endif
}
updatePlayPauseState(); updatePlayPauseState();
} }

Loading…
Cancel
Save