From d702ff02b24c470e41fdd80f19f6ba4cf83471fa Mon Sep 17 00:00:00 2001 From: hjk Date: Thu, 29 Jun 2023 07:34:39 +0200 Subject: [PATCH] ProjectExplorer: Re-add row break in build aspect Change-Id: Idf689b86637bb73efa4bff3e8a7191c1b7a4c7c3 Reviewed-by: Marcus Tillmanns --- src/plugins/projectexplorer/buildaspects.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/buildaspects.cpp b/src/plugins/projectexplorer/buildaspects.cpp index 606911654fd..7cfdb8fa7a5 100644 --- a/src/plugins/projectexplorer/buildaspects.cpp +++ b/src/plugins/projectexplorer/buildaspects.cpp @@ -111,7 +111,7 @@ void BuildDirectoryAspect::addToLayout(Layouting::LayoutItem &parent) StringAspect::addToLayout(parent); d->problemLabel = new InfoLabel({}, InfoLabel::Warning); d->problemLabel->setElideMode(Qt::ElideNone); - parent.addItems({{}, d->problemLabel.data()}); + parent.addItems({Layouting::br, Layouting::empty, d->problemLabel.data()}); updateProblemLabel(); if (!d->sourceDir.isEmpty()) { connect(this, &StringAspect::checkedChanged, this, [this] {