From 67e4c8855a2051a36232e7679344df228a68d53d Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sun, 3 May 2020 11:46:56 -0400 Subject: [PATCH] Warning message: "Fox-and-Hound operation is available only in FT8 mode". --- widgets/mainwindow.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index f7de7186b..a1d26a30b 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -1790,6 +1790,11 @@ void MainWindow::on_actionSettings_triggered() //Setup Dialog MessageBox::information_message (this, "EU VHF Contest messages require a 6-character locator."); } + if((m_config.special_op_id()==SpecOp::FOX or m_config.special_op_id()==SpecOp::HOUND) and + m_mode!="FT8") { + MessageBox::information_message (this, + "Fox-and-Hound operation is available only in FT8 mode."); + } } }