From eeed375baf46b8f647a7328d5f95bef7aa1bcece Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Mon, 16 Nov 2020 16:28:37 -0500 Subject: [PATCH] Tell user to go back it he selects F+H in a mode other than FT8. --- widgets/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index c1904af58..bb29d3da2 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -1888,7 +1888,7 @@ void MainWindow::on_actionSettings_triggered() //Setup Dialog 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."); + "Fox-and-Hound operation is available only in FT8 mode.\nGo back and change your selection."); } } }