diff --git a/mainwindow.cpp b/mainwindow.cpp index a75bc6a..4a1d757 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -8071,8 +8071,8 @@ void MainWindow::setFreq4(int rxFreq, int txFreq) { txFreq = rxFreq; } - rxFreq = max(500, rxFreq); - txFreq = max(500, txFreq); + rxFreq = max(0, rxFreq); + txFreq = max(0, txFreq); m_previousFreq = currentFreqOffset(); ui->RxFreqSpinBox->setValue(rxFreq);