mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-08-29 02:44:12 -04: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_.ntol=m_tol;
|
||||||
datcom_.mousedf=0;
|
datcom_.mousedf=0;
|
||||||
} else {
|
} else {
|
||||||
ui->tolSpinBox->setValue(3);
|
ui->tolSpinBox->setValue(qMin(3,ui->tolSpinBox->value()));
|
||||||
datcom_.ntol=m_tol;
|
datcom_.ntol=m_tol;
|
||||||
}
|
}
|
||||||
if(!m_decoderBusy) {
|
if(!m_decoderBusy) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user