PianetaRadio 2022-12-09 20:32:43 +01:00 zatwierdzone przez GitHub
rodzic 8c4d24c5e2
commit a055937a57
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -152,7 +152,7 @@ void SMeter::drawPeak(QPainter *painter)
else peakValue = peakValue - peakFactor*(peakValue - currentValue);
if (peakValue>max) peakValue = max;
if (peakValue>=gate) painter->setBrush(QColor(Qt::red));
if (peakValue>gate) painter->setBrush(QColor(Qt::red));
else painter->setBrush(progressColor);
initX = (peakValue - min) * increment;