From 461acc2bc8328895f4f7f923d82de521531bc1b0 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Sat, 14 Nov 2009 22:18:14 +0200 Subject: [PATCH] Added a small fix, courtesy of Jon Tibble. --- openlp/core/ui/maindisplay.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index 6b7ca55bb..fd2b08af3 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -214,8 +214,8 @@ class MainDisplay(DisplayWidget): self.displayBlank = False if self.frame: self.frameView(self.frame) - #if blanked != self.displayBlank: - # self.parent.LiveController.blankButton.setChecked(self.displayBlank) + if blanked != self.parent.LiveController.blankButton.isChecked(): + self.parent.LiveController.blankButton.setChecked(self.displayBlank) self.parent.generalConfig.set_config(u'Screen Blank', self.displayBlank) def displayAlert(self, text=u''):