On double-click on lower waterfall, don't change FTol if it was already < 100.

This commit is contained in:
Joe Taylor 2021-08-04 14:52:50 -04:00
parent 11d874ec37
commit 990933024c

View File

@ -1248,7 +1248,7 @@ void MainWindow::freezeDecode(int n) //freezeDecode()
datcom_.ntol=m_tol;
datcom_.mousedf=0;
} else {
ui->tolSpinBox->setValue(3);
ui->tolSpinBox->setValue(qMin(3,ui->tolSpinBox->value()));
datcom_.ntol=m_tol;
}
if(!m_decoderBusy) {