mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-25 05:38:46 -05:00
Make "Call 1st" invisible when AutoSeq is not checked.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7835 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
16a6a0df97
commit
f975b67ebb
@ -6486,6 +6486,12 @@ void MainWindow::on_cbWeak_toggled(bool b)
|
||||
if(b) ui->cbFirst->setChecked(!b);
|
||||
}
|
||||
|
||||
void MainWindow::on_cbAutoSeq_toggled(bool b)
|
||||
{
|
||||
if(!b) ui->cbFirst->setChecked(false);
|
||||
ui->cbFirst->setVisible(b);
|
||||
}
|
||||
|
||||
void MainWindow::write_transmit_entry (QString const& file_name)
|
||||
{
|
||||
QFile f {m_config.writeable_data_dir ().absoluteFilePath (file_name)};
|
||||
|
@ -240,6 +240,7 @@ private slots:
|
||||
void on_cbMenus_toggled(bool b);
|
||||
void on_cbFirst_toggled(bool b);
|
||||
void on_cbWeak_toggled(bool b);
|
||||
void on_cbAutoSeq_toggled(bool b);
|
||||
void networkError (QString const&);
|
||||
void on_ClrAvgButton_clicked();
|
||||
void on_actionWSPR_triggered();
|
||||
|
Loading…
Reference in New Issue
Block a user