mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 04:11:16 -05:00
On double-click on lower waterfall, don't change FTol if it was already < 100.
This commit is contained in:
parent
11d874ec37
commit
990933024c
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user