fixed small error where the tx latency was not copied in the UI

merge-requests/5/head
Roeland Jansen 2021-07-02 13:19:53 +02:00
rodzic 82d4862e21
commit 1563fccf54
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -1309,7 +1309,7 @@ void wfmain::loadSettings()
txSetup.latency = settings->value("AudioTXLatency", "150").toInt();
ui->txLatencySlider->setEnabled(ui->lanEnableBtn->isChecked());
ui->txLatencySlider->setValue(rxSetup.latency);
ui->txLatencySlider->setValue(txSetup.latency);
ui->txLatencySlider->setTracking(false); // Stop it sending value on every change.
ui->audioSampleRateCombo->blockSignals(true);