From 328144f4fe65958a12193c1f435e6f3d06932bf5 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Thu, 13 Oct 2016 18:14:20 +0000 Subject: [PATCH] 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 --- mainwindow.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index eedcee824..c75e4b7f9 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -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()