ProjectExplorer: Re-add row break in build aspect

Change-Id: Idf689b86637bb73efa4bff3e8a7191c1b7a4c7c3
Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
This commit is contained in:
hjk
2023-06-29 07:34:39 +02:00
parent fe7b45e374
commit d702ff02b2

View File

@@ -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] {