From 46fa64b43de8705433ea1e5c0f8ebc34b835d328 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Sun, 17 Jul 2011 15:01:28 +0200 Subject: [PATCH] reverted some changes --- openlp/core/lib/htmlbuilder.py | 1 - openlp/core/lib/renderer.py | 27 ++++----------------------- 2 files changed, 4 insertions(+), 24 deletions(-) diff --git a/openlp/core/lib/htmlbuilder.py b/openlp/core/lib/htmlbuilder.py index 295a6c1ad..d133cb035 100644 --- a/openlp/core/lib/htmlbuilder.py +++ b/openlp/core/lib/htmlbuilder.py @@ -38,7 +38,6 @@ HTMLSRC = u""" - OpenLP Display - - -
-""" - HTML_END = u'
' class Renderer(object): @@ -332,7 +310,10 @@ class Renderer(object): self.web.resize(self.page_width, self.page_height) self.web_frame = self.web.page().mainFrame() # Adjust width and height to account for shadow. outline done in css - self.page_shell = HTML_START % \ + self.page_shell = u'' \ + u'
' % \ (build_lyrics_format_css(self.theme_data, self.page_width, self.page_height), build_lyrics_outline_css(self.theme_data))