mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-04-21 10:48:34 -04:00
Don't allow decoding depth to be changed just because Echo mode was entered.
This commit is contained in:
parent
339c3a042d
commit
7187172d02
@ -7122,7 +7122,13 @@ void MainWindow::on_actionWSPR_triggered()
|
||||
|
||||
void MainWindow::on_actionEcho_triggered()
|
||||
{
|
||||
int nd=int(m_ndepth&3);
|
||||
on_actionJT4_triggered();
|
||||
// Don't allow decoding depth to be changed just because Echo mode was entered:
|
||||
if(nd==1) ui->actionQuickDecode->setChecked (true);
|
||||
if(nd==2) ui->actionMediumDecode->setChecked (true);
|
||||
if(nd==3) ui->actionDeepestDecode->setChecked (true);
|
||||
|
||||
m_mode="Echo";
|
||||
ui->actionEcho->setChecked(true);
|
||||
m_TRperiod=3.0;
|
||||
|
Loading…
Reference in New Issue
Block a user