From 3cee5c2e4995e612e6b1d014db51a52ddd8aba38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Wed, 3 Jun 2026 18:29:11 +0200 Subject: [PATCH] dashboard: clearer label for the dropped-NC detail rows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "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 --- src/tui/screen_dashboard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tui/screen_dashboard.cpp b/src/tui/screen_dashboard.cpp index 65b0eec..dc21529 100644 --- a/src/tui/screen_dashboard.cpp +++ b/src/tui/screen_dashboard.cpp @@ -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);