From 6cce8230f24fdf22340814f1472e67c1c1b388f9 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Wed, 3 Oct 2018 18:29:38 -0400 Subject: [PATCH] Removed block for lower frequencies, but keeping the orange caution --- mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);