For now, disable "Save Decoded".

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7174 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2016-10-13 18:14:20 +00:00
parent a3410b1e02
commit 328144f4fe
1 changed files with 8 additions and 1 deletions

View File

@ -1441,8 +1441,12 @@ void MainWindow::on_actionSettings_triggered() //Setup Dialog
ui->label_6->setText("Band Activity");
ui->label_7->setText("Rx Frequency");
}
update_watchdog_label ();
//###
bool b=m_config.my_callsign()=="K1JT" or m_config.my_callsign()=="K9AN";
ui->cbCQRx->setEnabled(b);
ui->actionSave_decoded->setEnabled(b);
//###
}
void MainWindow::on_monitorButton_clicked (bool checked)
@ -4059,8 +4063,11 @@ void MainWindow::on_actionMSK144_triggered()
ui->rptSpinBox->setSingleStep(1);
ui->sbFtol->setMinimum(22);
ui->sbFtol->setMaximum(25);
//###
bool b=m_config.my_callsign()=="K1JT" or m_config.my_callsign()=="K9AN";
ui->cbCQRx->setEnabled(b);
ui->actionSave_decoded->setEnabled(b);
//###
}
void MainWindow::on_actionQRA64_triggered()