From 420f8d0fccee125cbecd1bfd47870548ba550131 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Mon, 24 Sep 2018 21:06:12 -0400 Subject: [PATCH] Disabled menu item for ALLCALL SNR query --- mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index 243e24b..e443e83 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -7530,6 +7530,7 @@ void MainWindow::buildQueryMenu(QMenu * menu, QString call){ menu->addSeparator(); auto snrQueryAction = menu->addAction(QString("%1? - What is my signal report?").arg(call)); + snrQueryAction->setDisabled(isAllCall); connect(snrQueryAction, &QAction::triggered, this, [this](){ QString selectedCall = callsignSelected();