From 62031c24b94f79bd128cd1db95725531d1d18926 Mon Sep 17 00:00:00 2001 From: Jon Tibble Date: Thu, 5 Nov 2009 00:09:19 +0000 Subject: [PATCH] Fix last theme.parse() without a cleanTheme() --- openlp/core/ui/thememanager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openlp/core/ui/thememanager.py b/openlp/core/ui/thememanager.py index a55f39fd3..44ac83043 100644 --- a/openlp/core/ui/thememanager.py +++ b/openlp/core/ui/thememanager.py @@ -430,6 +430,7 @@ class ThemeManager(QtGui.QWidget): log.debug(u'generateAndSaveImage %s %s %s', dir, name, theme_xml) theme = ThemeXML() theme.parse(theme_xml) + self.cleanTheme(theme) theme.extend_image_filename(dir) frame = self.generateImage(theme) samplepathname = os.path.join(self.path, name + u'.png')