Make "Call 1st" checkBox visible only in FT8 mode.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7836 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2017-07-10 14:04:25 +00:00
parent f975b67ebb
commit 0aa5c2f2d8
1 changed files with 1 additions and 1 deletions

View File

@ -6489,7 +6489,7 @@ void MainWindow::on_cbWeak_toggled(bool b)
void MainWindow::on_cbAutoSeq_toggled(bool b)
{
if(!b) ui->cbFirst->setChecked(false);
ui->cbFirst->setVisible(b);
ui->cbFirst->setVisible((m_mode=="FT8") and b);
}
void MainWindow::write_transmit_entry (QString const& file_name)