diff --git a/libs/widgets/fastmeter.cc b/libs/widgets/fastmeter.cc index cf1d9dd070..a9ecf5dad6 100644 --- a/libs/widgets/fastmeter.cc +++ b/libs/widgets/fastmeter.cc @@ -703,7 +703,7 @@ FastMeter::set (float lvl, float peak) if (pixwidth <= 0 || pixheight <=0) return; if (peak == -1) { - if (lvl >= current_peak) { + if (lvl >= current_peak && lvl > 0) { current_peak = lvl; hold_state = hold_cnt; }