diff --git a/src/plugins/projectexplorer/projectwindow.cpp b/src/plugins/projectexplorer/projectwindow.cpp index 5267b25a52b..1b34faf9f6e 100644 --- a/src/plugins/projectexplorer/projectwindow.cpp +++ b/src/plugins/projectexplorer/projectwindow.cpp @@ -50,6 +50,7 @@ #include #include #include +#include #include #include #include @@ -483,9 +484,16 @@ ProjectWindow::ProjectWindow() selectorView->setWindowTitle(tr("Project Selector")); selectorView->setAutoFillBackground(true); + auto activeLabel = new QLabel(tr("Active Project")); + QFont font = activeLabel->font(); + font.setBold(true); + font.setPointSizeF(font.pointSizeF() * 1.2); + activeLabel->setFont(font); + auto innerLayout = new QVBoxLayout; innerLayout->setSpacing(10); innerLayout->setContentsMargins(14, innerLayout->spacing(), 14, 0); + innerLayout->addWidget(activeLabel); innerLayout->addWidget(selectorModel->m_projectSelection); innerLayout->addWidget(selectorModel->m_selectorTree);