Mirror the panel in the console table as one summed row in two sections

This commit is contained in:
flamingcow
2026-08-04 14:02:53 -07:00
parent fbfcabda7e
commit 63196eb691
4 changed files with 76 additions and 98 deletions
-7
View File
@@ -45,13 +45,6 @@ type cableView struct {
ok bool
}
func (v cableView) minText() string {
if !v.ok {
return "-"
}
return commas(uint64(v.min))
}
// Averaging the two directions cancels the phy asymmetry between them, which is
// about 790ns and swamps any cable, so one direction alone cannot give a length.
func cableMetres(views []view, nsPerM float64) (float64, bool) {