diff --git a/openlp/plugins/presentations/lib/messagelistener.py b/openlp/plugins/presentations/lib/messagelistener.py index ba971ffc1..12e1b6570 100644 --- a/openlp/plugins/presentations/lib/messagelistener.py +++ b/openlp/plugins/presentations/lib/messagelistener.py @@ -142,7 +142,7 @@ class MessageListener(object): """ Based on the handler passed at startup triggers slide show to shut down """ - if not self.is_live: + if self.is_live: Receiver().send_message(u'live_slide_show') self.controller.close_presentation() self.controller.slidenumber = 0 diff --git a/openlp/plugins/presentations/lib/presentationcontroller.py b/openlp/plugins/presentations/lib/presentationcontroller.py index 02730cda7..caa6fcd3f 100644 --- a/openlp/plugins/presentations/lib/presentationcontroller.py +++ b/openlp/plugins/presentations/lib/presentationcontroller.py @@ -178,7 +178,7 @@ class PresentationController(object): log.debug(u'Kill') self.close_presentation() - def load_presentation(self, presentation, is_live): + def load_presentation(self, presentation): """ Called when a presentation is added to the SlideController. Loads the presentation and starts it @@ -186,8 +186,6 @@ class PresentationController(object): ``presentation`` The file name of the presentations to the run. - ``is_live`` - True if Live controller is opening the presentation """ pass