From 7bac2ac6e3c013332413c07bc01c46675fac2987 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Fri, 1 May 2009 14:32:08 +0200 Subject: [PATCH] Minor fix. --- 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 94c0b1da4..19c98b520 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -37,7 +37,7 @@ class MainWindow(object): def __init__(self, screens): self.main_window = QtGui.QMainWindow() - self.main_display = MainDisplay(self.main_window, screens) + self.main_display = MainDisplay(None, screens) self.screen_list = screens self.EventManager = EventManager() self.alert_form = AlertForm()