From 1563fccf54b3a1995390879c5fd2e69dc2e5f716 Mon Sep 17 00:00:00 2001 From: Roeland Jansen Date: Fri, 2 Jul 2021 13:19:53 +0200 Subject: [PATCH] fixed small error where the tx latency was not copied in the UI --- wfmain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wfmain.cpp b/wfmain.cpp index 427021a..fca3152 100644 --- a/wfmain.cpp +++ b/wfmain.cpp @@ -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);