QmlDesigner: fix color of label in File System explorer

This commit is contained in:
Thomas Hartmann
2010-03-25 13:31:29 +01:00
parent c90e880298
commit 699d8b6f63

View File

@@ -514,7 +514,7 @@ void DesignModeWidget::setup()
QFile file2(":/qmldesigner/scrollbar.css");
file2.open(QFile::ReadOnly);
QString labelStyle = QLatin1String("QLabel { background-color: #707070; }");
QString labelStyle = QLatin1String("QLabel { background-color: ##4f4f4f; }");
QString styleSheet = file.readAll() + file2.readAll() + labelStyle;
navigationView.widget->setStyleSheet(styleSheet);