From 9e7f98e33c56e9f4ab64211517bfc8559f98369e Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Tue, 6 Jul 2010 22:27:57 +0200 Subject: [PATCH] Fixed a small bug where the item in the menu would remain checked despite the fact that the element on the form was no longer visible. --- openlp/core/ui/mainwindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index d436ac379..3391f502a 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -785,7 +785,7 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): self.LiveController.Panel.setVisible(True) self.settingsmanager.set_preview_visibility(False) self.settingsmanager.set_live_visibility(True) - self.ViewPreviewPanel.setChecked(True) + self.ViewPreviewPanel.setChecked(False) self.ViewLivePanel.setChecked(True) def screenChanged(self):