From 3855b28d400b85b880705614210e11b2cc90a4bd Mon Sep 17 00:00:00 2001 From: ElderP Date: Fri, 21 Sep 2012 16:35:42 -0400 Subject: [PATCH] Added [crashreport] as a valid section for settings import --- openlp/core/ui/mainwindow.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 585aba15b..204fd47cd 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -971,6 +971,7 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): setting_sections.extend([self.themesSettingsSection]) setting_sections.extend([self.displayTagsSection]) setting_sections.extend([self.headerSection]) + setting_sections.extend([u'crashreport']) # Add plugin sections. for plugin in self.pluginManager.plugins: setting_sections.extend([plugin.name])