Skip to content

Commit 358cca5

Browse files
Merge #7191: fix(qt): reseat quorum labels when new types are inserted
641b3ea fix(qt): reseat quorum labels when new types are inserted (UdjinM6) Pull request description: ## Issue being fixed or feature implemented 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. before: <img width="292" height="173" alt="Screenshot 2026-03-01 at 13 56 12" src="https://github.com/user-attachments/assets/54daacde-6e44-4771-8478-00d11d93944a" /> after: <img width="282" height="188" alt="Screenshot 2026-03-02 at 19 07 23" src="https://github.com/user-attachments/assets/ed1f74c1-9c16-498b-ac7e-147f9601ba88" /> ## What was done? ## How Has This Been Tested? reindex with and without the patch on testnet ## Breaking Changes n/a ## Checklist: - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [ ] I have assigned this pull request to a milestone ACKs for top commit: kwvg: utACK 641b3ea Tree-SHA512: 6ab68bbda76975a2c2cec8a85e85c6ebc0a580dbf8012761a42c8d8d61e318d830bad47375a8af2d0c1754ef6c485f9204aa0e6d2f6898438d0699ebfbeadfa5
2 parents 2e6a225 + 641b3ea commit 358cca5

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)