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

AM demod: fixed reverse API settings from the API

This commit is contained in:
f4exb
2019-04-20 19:11:58 +02:00
parent 387c5a0e3b
commit 1e0da5b8ee
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ void BasicChannelSettingsDialog::setReverseAPIDeviceIndex(uint16_t deviceIndex)
void BasicChannelSettingsDialog::setReverseAPIChannelIndex(uint16_t channelIndex)
{
m_reverseAPIChannelIndex = channelIndex > 99 ? 99 : channelIndex;
ui->reverseAPIDeviceIndex->setText(tr("%1").arg(m_reverseAPIChannelIndex));
ui->reverseAPIChannelIndex->setText(tr("%1").arg(m_reverseAPIChannelIndex));
}
void BasicChannelSettingsDialog::paintColor()