renamed constant

This commit is contained in:
Andreas Preikschat 2013-03-07 13:43:06 +01:00
parent a70ef917fc
commit ceeaa0c359
1 changed files with 2 additions and 2 deletions

View File

@ -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')