From 641b3ea53ddd002b47403a20eec4f2f4486136eb Mon Sep 17 00:00:00 2001 From: UdjinM6 Date: Mon, 2 Mar 2026 20:36:37 +0300 Subject: [PATCH] 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 --- src/qt/networkwidget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qt/networkwidget.cpp b/src/qt/networkwidget.cpp index 774125031b5f..6ff8297f3c7b 100644 --- a/src/qt/networkwidget.cpp +++ b/src/qt/networkwidget.cpp @@ -240,6 +240,7 @@ void NetworkWidget::handleQrDataChanged() it->second.second->setToolTip(tr("Waiting for blockchain sync…")); grid->addWidget(it->second.first, current_row, 0); grid->addWidget(it->second.second, current_row, 1); + needs_reseating = true; } else if (needs_reseating) { grid->removeWidget(it->second.first); grid->removeWidget(it->second.second);