mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-08 12:28:43 -05:00
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
This commit is contained in:
parent
91839b0340
commit
3e5f6d61e4
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user