dashboard: clearer label for the dropped-NC detail rows

"dropped detail:" said nothing about what those pins are. They were detached
by drop_singleton_signals because each was the lone pin on its net (nowhere to
connect → NC). Relabel to "dropped — lone pin on its net (→ NC):".

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-03 18:29:11 +02:00
parent a914b9d7e8
commit 3cee5c2e49

View File

@@ -259,7 +259,7 @@ Component Tui::BuildDashboardScreen() {
// spot a false positive.
if (orph_dropped > 0) {
lines.push_back(hbox({
text(" dropped detail:") | dim,
text(" dropped — lone pin on its net (→ NC):") | dim,
}));
for (auto &dkv : dropped_by_module) {
std::sort(dkv.second.begin(), dkv.second.end(), NaturalLess);