From 90d3e2a1d4d9b293e66753c9cbb22d5c034d0e51 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Sun, 25 Feb 2018 14:01:13 +0000 Subject: [PATCH] Ensure JT65 AP menu item does not show in HF mode git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8534 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 10f68d439..06b2d710d 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -6380,7 +6380,7 @@ void::MainWindow::VHF_features_enabled(bool b) ui->actionInclude_correlation->setVisible (b); ui->actionMessage_averaging->setEnabled(b); ui->actionEnable_AP_DXcall->setVisible (m_mode=="QRA64"); - ui->actionEnable_AP_JT65->setVisible (m_mode=="JT65"); + ui->actionEnable_AP_JT65->setVisible (b && m_mode=="JT65"); if(!b && m_msgAvgWidget and !m_config.bFox()) { if(m_msgAvgWidget->isVisible()) m_msgAvgWidget->close(); }