crates/namir-ui/src/meter.rs:192, 196
format!("{:.1} dBFS", reading.peak_db) renders MeterReading::SILENT's f32::NEG_INFINITY as -inf dBFS in both the bar text and the hover text -- the label shown before any audio arrives.
Fix: render as <= -60.0 dBFS (or an em dash) at or below METER_FLOOR_DB.
crates/namir-ui/src/meter.rs:192, 196format!("{:.1} dBFS", reading.peak_db)rendersMeterReading::SILENT'sf32::NEG_INFINITYas-inf dBFSin both the bar text and the hover text -- the label shown before any audio arrives.Fix: render as
<= -60.0 dBFS(or an em dash) at or belowMETER_FLOOR_DB.