1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-04-05 02:58:37 -04:00

SDRdaemonFEC plugin: make status button background darker when blocks are lost

This commit is contained in:
f4exb 2016-07-25 08:40:10 +02:00
parent 1d2e0986e5
commit 8b82547b86

View File

@ -607,7 +607,8 @@ void SDRdaemonFECGui::updateWithStreamTime()
} else if (m_framesDecodingStatus == 1) {
ui->allFramesDecoded->setStyleSheet("QToolButton { background-color : blue; }");
} else {
ui->allFramesDecoded->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
// ui->allFramesDecoded->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
ui->allFramesDecoded->setStyleSheet("QToolButton { background:rgb(56,56,56); }");
}
QString s = QString::number(m_bufferLengthInSecs, 'f', 1);