From fcba07b6cc10eb4d11f46729380d525b252d2cff Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Mon, 8 Sep 2014 10:56:27 +0000 Subject: [PATCH] Fix defect with initial split mode setting. Split mode was not being enabled when enabling monitor mode for the first time if the rig split VFO was already at the required frequency. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@4269 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- Configuration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configuration.cpp b/Configuration.cpp index 3d7b41b66..e542fd987 100644 --- a/Configuration.cpp +++ b/Configuration.cpp @@ -1836,7 +1836,7 @@ bool Configuration::impl::set_mode () void Configuration::impl::transceiver_tx_frequency (Frequency f) { - if (set_mode () || cached_rig_state_.tx_frequency () != f) + if (set_mode () || cached_rig_state_.tx_frequency () != f || cached_rig_state_.split () != !!f) { cached_rig_state_.tx_frequency (f); cached_rig_state_.split (f);