diff --git a/src/plugins/projectexplorer/panelswidget.cpp b/src/plugins/projectexplorer/panelswidget.cpp index 2754e17f375..d0259f60e94 100644 --- a/src/plugins/projectexplorer/panelswidget.cpp +++ b/src/plugins/projectexplorer/panelswidget.cpp @@ -100,7 +100,7 @@ void PanelsWidget::addPropertiesPanel(const QString &displayName) auto nameLabel = new QLabel(m_root); nameLabel->setText(displayName); nameLabel->setContentsMargins(0, ABOVE_HEADING_MARGIN, 0, 0); - nameLabel->setFont(StyleHelper::uiFont(StyleHelper::UiElementH3)); + nameLabel->setFont(StyleHelper::uiFont(StyleHelper::UiElementH4)); m_layout->addWidget(nameLabel); m_layout->addWidget(Layouting::createHr()); } diff --git a/src/plugins/welcome/introductionwidget.cpp b/src/plugins/welcome/introductionwidget.cpp index 0ddfe937e43..41bd1a93bf1 100644 --- a/src/plugins/welcome/introductionwidget.cpp +++ b/src/plugins/welcome/introductionwidget.cpp @@ -78,7 +78,7 @@ IntroductionWidget::IntroductionWidget(QWidget *parent) m_continueLabel->setAlignment(Qt::AlignCenter); m_continueLabel->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); m_continueLabel->setWordWrap(true); - m_continueLabel->setFont(StyleHelper::uiFont(StyleHelper::UiElementH3)); + m_continueLabel->setFont(StyleHelper::uiFont(StyleHelper::UiElementH4)); m_continueLabel->setPalette(palette()); layout->addWidget(m_continueLabel); m_bodyCss = "font-size: 16px;";