Skip to content

Commit 9608b1d

Browse files
UdjinM6claude
authored andcommitted
fix(qt): reseat quorum labels when new types are inserted
When new quorum types appear during reindexing, existing labels that follow the insertion point in the grid were not being repositioned, causing overlapping text in the Information tab's Quorums section. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 142b2a1 commit 9608b1d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/qt/networkwidget.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ void NetworkWidget::handleQrDataChanged()
240240
it->second.second->setToolTip(tr("Waiting for blockchain sync…"));
241241
grid->addWidget(it->second.first, current_row, 0);
242242
grid->addWidget(it->second.second, current_row, 1);
243+
needs_reseating = true;
243244
} else if (needs_reseating) {
244245
grid->removeWidget(it->second.first);
245246
grid->removeWidget(it->second.second);

0 commit comments

Comments
 (0)