diff --git a/openlp/core/__init__.py b/openlp/core/__init__.py index cb3fafcc7..c9634b095 100644 --- a/openlp/core/__init__.py +++ b/openlp/core/__init__.py @@ -57,7 +57,7 @@ __all__ = [u'OpenLP', u'main'] log = logging.getLogger() -nt_repair_stylesheet = u""" +NT_REPARI_STYLESHEET = u""" QMainWindow::separator { border: none; @@ -125,7 +125,7 @@ class OpenLP(QtGui.QApplication): u'QTableWidget, QListWidget, QTreeWidget {alternate-background-color: ' + base_color.name() + ';}\n' application_stylesheet += alternate_rows_repair_stylesheet if os.name == u'nt': - application_stylesheet += nt_repair_stylesheet + application_stylesheet += NT_REPARI_STYLESHEET if application_stylesheet: self.setStyleSheet(application_stylesheet) show_splash = Settings().value(u'general/show splash')