From f5bc8056f78db0639818e6330be320c24bd54890 Mon Sep 17 00:00:00 2001 From: suutari-olli Date: Sun, 17 Jul 2016 19:11:51 +0300 Subject: [PATCH] - removed one unrequired if statement. --- openlp/core/ui/slidecontroller.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index cd6a37342..8e5334006 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -1113,9 +1113,6 @@ class SlideController(DisplayController, RegistryProperties): # If "click live slide to unblank" is enabled, unblank the display. And start = Item is sent to Live. # Note: If this if statement is placed at the bottom of this function instead of top slide transitions are lost. if self.is_live and Settings().value('core/click live slide to unblank'): - # With this display stays blanked when "auto unblank" setting is not enabled and new item is sent to Live. - if not Settings().value('core/auto unblank') and start: - () if not start: Registry().execute('slidecontroller_live_unblank') row = self.preview_widget.current_slide_number()