From cd8377f03d3363ca92686d3d0851cb03f96fb392 Mon Sep 17 00:00:00 2001 From: Martin Thompson Date: Wed, 12 May 2010 21:43:48 +0100 Subject: [PATCH] Fixed crash when monitor= in OpenLP.conf --- openlp/core/ui/screen.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openlp/core/ui/screen.py b/openlp/core/ui/screen.py index 19c4e01b5..69dd915d2 100644 --- a/openlp/core/ui/screen.py +++ b/openlp/core/ui/screen.py @@ -61,9 +61,10 @@ class ScreenList(object): """ Set up the current screen dimensions """ - log.debug(u'set_override_display %s', number, ) + log.debug(u'set_current_display %s', number, ) if number + 1 > self.display_count: self.current = self.screen_list[0] + self.override = copy.deepcopy(self.current) self.current_display = 0 else: self.current = self.screen_list[number]