mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-04-05 19:08:38 -04:00
Ensure that calibration parameters are disabled only while measuring
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8173 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
d7ea179e6d
commit
7149d138f5
@ -4691,6 +4691,7 @@ void MainWindow::displayWidgets(int n)
|
||||
ui->cbFirst->setVisible ("FT8" == m_mode);
|
||||
ui->actionEnable_AP->setVisible ("FT8" == m_mode);
|
||||
ui->cbVHFcontest->setVisible(m_mode=="FT8" or m_mode=="MSK144");
|
||||
ui->measure_check_box->setChecked (false);
|
||||
ui->measure_check_box->setVisible ("FreqCal" == m_mode);
|
||||
m_lastCallsign.clear (); // ensures Tx5 is updated for new modes
|
||||
genStdMsgs (m_rpt, true);
|
||||
@ -6867,9 +6868,7 @@ void MainWindow::on_cbAutoSeq_toggled(bool b)
|
||||
|
||||
void MainWindow::on_measure_check_box_stateChanged (int state)
|
||||
{
|
||||
if ("FreqCal" == m_mode) {
|
||||
m_config.enable_calibration (Qt::Checked != state);
|
||||
}
|
||||
m_config.enable_calibration (Qt::Checked != state);
|
||||
}
|
||||
|
||||
void MainWindow::write_transmit_entry (QString const& file_name)
|
||||
|
Loading…
Reference in New Issue
Block a user