Fix screen blanking when in single screen

bzr-revno: 874
Fixes: https://launchpad.net/bugs/596997
This commit is contained in:
Tim Bentley 2010-06-22 19:10:08 +01:00
commit b57a1619ff

View File

@ -655,7 +655,8 @@ class SlideController(QtGui.QWidget):
""" """
Allow the main display to blank the main display at startup time Allow the main display to blank the main display at startup time
""" """
self.blankButton.setChecked(True) if not self.mainDisplay.primary:
self.blankButton.setChecked(True)
def onSlideBlank(self): def onSlideBlank(self):
""" """