1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-07 20:03:13 -04:00

Center frequency dials up to 9 digits and transverter delta frequency dial up to 12 digits. Fixes #1476

This commit is contained in:
f4exb
2022-10-15 03:04:29 +02:00
parent 90199aa5ac
commit 949a9e9380
37 changed files with 101 additions and 101 deletions
+2 -2
View File
@@ -48,7 +48,7 @@ SDRPlayGui::SDRPlayGui(DeviceUISet *deviceUISet, QWidget* parent) :
getContents()->setStyleSheet("#SDRPlayGui { background-color: rgb(64, 64, 64); }");
m_helpURL = "plugins/samplesource/sdrplay/readme.md";
ui->centerFrequency->setColorMapper(ColorMapper(ColorMapper::GrayGold));
ui->centerFrequency->setValueRange(7, 10U, 12000U);
ui->centerFrequency->setValueRange(9, 10U, 999999999U);
ui->fBand->clear();
for (unsigned int i = 0; i < SDRPlayBands::getNbBands(); i++)
@@ -345,7 +345,7 @@ void SDRPlayGui::on_iqImbalance_toggled(bool checked)
void SDRPlayGui::on_fBand_currentIndexChanged(int index)
{
ui->centerFrequency->setValueRange(
7,
9,
SDRPlayBands::getBandLow(index),
SDRPlayBands::getBandHigh(index));