Warning message: "Fox-and-Hound operation is available only in FT8 mode".

This commit is contained in:
Joe Taylor 2020-05-03 11:46:56 -04:00
parent 4ea896af55
commit 67e4c8855a

View File

@ -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.");
}
}
}