1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-05 07:24:44 -04:00

All mod and demod plugins: try to fix channel power display

This commit is contained in:
f4exb
2017-05-26 01:19:36 +02:00
parent 3a3d8e3dcb
commit 59a4dab7df
18 changed files with 247 additions and 269 deletions
+1 -1
View File
@@ -626,7 +626,7 @@ void SSBModGUI::tick()
{
double powDb = CalcDb::dbPower(m_ssbMod->getMagSq());
m_channelPowerDbAvg.feed(powDb);
ui->channelPower->setText(QString::number(m_channelPowerDbAvg.average(), 'f', 1));
ui->channelPower->setText(tr("%1 dB").arg(m_channelPowerDbAvg.average(), 0, 'f', 1));
if (((++m_tickCount & 0xf) == 0) && (m_modAFInput == SSBMod::SSBModInputFile))
{