From 005cf541160a6ee81d9b417afb91e24d50740e26 Mon Sep 17 00:00:00 2001 From: suutari-olli Date: Wed, 30 Mar 2016 20:33:56 +0300 Subject: [PATCH] Removed duplicate check for this setting from def setup, realized it is overridden by later check anyways. --- openlp/core/ui/maindisplay.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index 392b617c5..0e5215d89 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -251,10 +251,7 @@ class MainDisplay(OpenLPMixin, Display, RegistryProperties): self.screen = self.screens.current self.setVisible(False) Display.setup(self) - # If "Show no Logo or Image on startup" is enabled, keep display hidden instead. if self.is_live: - if Settings().value('advanced/default show nothing'): - self.setVisible(False) # Build the initial frame. background_color = QtGui.QColor() background_color.setNamedColor(Settings().value('advanced/default color'))