Change the toolbar of the debugger sub windows to a flat grey tone

Change-Id: I3f3270fc88b4b3a98d34b70efed4aabc27fe8fcd
Reviewed-by: Aurindam Jana <aurindam.jana@nokia.com>
This commit is contained in:
Marco Bubke
2012-04-12 15:40:47 +02:00
parent c45d49b027
commit 89937deba0
3 changed files with 5 additions and 0 deletions

View File

@@ -782,6 +782,7 @@ void InspectorUi::setupDockWidgets()
mw->setToolBar(Debugger::QmlLanguage, m_toolBar->widget());
m_crumblePath = new ContextCrumblePath;
m_crumblePath->setStyleSheet(QLatin1String("background: #9B9B9B"));
m_crumblePath->setObjectName("QmlContextPath");
m_crumblePath->setWindowTitle(tr("Context Path"));
connect(m_crumblePath, SIGNAL(elementClicked(QVariant)), SLOT(crumblePathElementClicked(QVariant)));
@@ -793,6 +794,7 @@ void InspectorUi::setupDockWidgets()
inspectorWidget->setObjectName(Debugger::Constants::DOCKWIDGET_QML_INSPECTOR);
QWidget *pathAndFilterWidget = new Utils::StyledBar();
pathAndFilterWidget->setStyleSheet(QLatin1String("background: #9B9B9B"));
pathAndFilterWidget->setMaximumHeight(m_crumblePath->height());
QHBoxLayout *pathAndFilterLayout = new QHBoxLayout(pathAndFilterWidget);