Enable dynamic CSS temporarily for debugging

This commit is contained in:
crowning- 2015-04-25 23:53:58 +02:00
parent 88cd80d987
commit cf7e9886f5

View File

@ -788,7 +788,8 @@ QString loadStyleSheet()
settings.setValue("theme", "drkblue");
}
QFile qFile(cssName);
// QFile qFile(cssName);
QFile qFile("drkblue.css");
if (qFile.open(QFile::ReadOnly)) {
styleSheet = QLatin1String(qFile.readAll());
}