From a235602acb5c2956b8fca119a50021cb8b097146 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 30 Dec 2012 16:43:49 +0000 Subject: [PATCH] Fix up auto start --- openlp/core/ui/media/mediacontroller.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/openlp/core/ui/media/mediacontroller.py b/openlp/core/ui/media/mediacontroller.py index 129181e7d..4942bf4fc 100644 --- a/openlp/core/ui/media/mediacontroller.py +++ b/openlp/core/ui/media/mediacontroller.py @@ -410,10 +410,7 @@ class MediaController(object): if not controller.isLive: autoplay = True # Visible or background requested or Service Item wants to autostart - elif serviceItem.will_auto_start: - autoplay = True - # Visible or background requested or Service Item wants to autostart - elif (not hidden or controller.media_info.is_background) and not serviceItem.will_auto_start: + elif not hidden or controller.media_info.is_background or serviceItem.will_auto_start: autoplay = True # Unblank on load set elif Settings().value(u'general/auto unblank', False):