From 1a31dd64b60df1da22ad0d78a1188da9fba301ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Wed, 3 Jun 2026 18:30:20 +0200 Subject: [PATCH] dashboard: simpler wording for the dropped-NC detail label 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 dc21529..75e4b13 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 — lone pin on its net (→ NC):") | dim, + text(" dropped — net has only 1 pin (NC):") | dim, })); for (auto &dkv : dropped_by_module) { std::sort(dkv.second.begin(), dkv.second.end(), NaturalLess);