diff --git a/ChangeLog b/ChangeLog index db9eff72..4eeea894 100644 --- a/ChangeLog +++ b/ChangeLog @@ -31,12 +31,6 @@ -TODO clip LED on channel faders goes on too early (compare to input level meter clip LED) - -> only 3 of 4 bits of the channel level protocol are actually used, one bit is wasted - -> enlarge range in the server by one value (using wasted dynamic) just in case - the signal is above our defined clip ratio -> as a result, only on new servers the - channel fader clip LED would work (which is ok) - TODO support clip indicator for bar meter as well -> change background to red in case of clipping diff --git a/src/levelmeter.cpp b/src/levelmeter.cpp index 44ae79e0..1b945232 100755 --- a/src/levelmeter.cpp +++ b/src/levelmeter.cpp @@ -115,7 +115,7 @@ void CLevelMeter::SetLevelMeterType ( const ELevelMeterType eNType ) pStackedLayout->setCurrentIndex ( 1 ); pBarMeter->setStyleSheet ( "QProgressBar { margin: 1px;" - " padding: 1px; " + " padding: 1px;" " width: 15px; }" "QProgressBar::chunk { background: green; }" ); break; @@ -131,7 +131,7 @@ void CLevelMeter::SetLevelMeterType ( const ELevelMeterType eNType ) pBarMeter->setStyleSheet ( "QProgressBar { border: 0px;" " margin: 0px;" - " padding: 0px; " + " padding: 0px;" " width: 4px; }" "QProgressBar::chunk { background: green; }" ); break;