Removed block for lower frequencies, but keeping the orange caution

This commit is contained in:
Jordan Sherer 2018-10-03 18:29:38 -04:00
parent 0ca7c332f6
commit 6cce8230f2

View File

@ -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);