diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index 1abc33ad6..ebd810c5c 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -266,7 +266,7 @@ class MainDisplay(DisplayWidget): def onMediaPlay(self, live=True): log.debug(u'Play the new media, Live %s', live) - if not self.mediaLoaded and not self.displayBlank and live: + if not self.mediaLoaded and not self.displayBlank: self.blankDisplay() self.firstTime = True self.mediaLoaded = True @@ -274,7 +274,7 @@ class MainDisplay(DisplayWidget): self.display.hide() self.video.setFullScreen(True) self.mediaObject.play() - if self.primary and live: + if self.primary: self.setVisible(True) def onMediaPaws(self): diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index 550574d3a..331597c61 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -678,4 +678,5 @@ class SlideController(QtGui.QWidget): else: self.mediaObject.stop() self.video.hide() + self.SlidePreview.clear() self.SlidePreview.show() diff --git a/version.txt b/version.txt index 8544e3d2f..213996cc7 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.9.0-662 +1.9.0-665