From 0a139e5acdc9df75ce6f3ad1d24f7ce441a821f0 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Mon, 13 Feb 2023 14:05:18 +0100 Subject: [PATCH] Don't Tx when the frequency is manually entered in the band select box and the Enter/Return key is pressed. --- widgets/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 78d1a2fc1..bfad377f2 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -7530,6 +7530,7 @@ void MainWindow::on_bandComboBox_activated (int index) m_bandEdited = true; band_changed (frequency); m_wideGraph->setRxBand (m_config.bands ()->find (frequency)); + auto_tx_mode(false); } void MainWindow::band_changed (Frequency f)