Merge branch 'vlx-fix' into 'master'

FIX: Missing looping for theme background videos

See merge request openlp/openlp!572
This commit is contained in:
Raoul Snyman 2023-02-06 16:23:56 +00:00
commit ec162af360
1 changed files with 1 additions and 1 deletions

View File

@ -497,7 +497,7 @@ class MediaController(RegistryBase, LogMixin, RegistryProperties):
if controller.media_info.is_playing and controller.media_info.length > 0:
controller.media_info.timer += TICK_TIME
if controller.media_info.timer >= controller.media_info.start_time + controller.media_info.length:
if is_looping_playback(controller):
if is_looping_playback(controller) or self.is_theme_background:
start_again = True
else:
self.media_stop(controller)