From 850e646c6db67dcc220c22bf813d43d6ece0241a Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 10 Aug 2020 23:16:37 -0400 Subject: [PATCH] Fix source of bandwidth display visual glitch --- src/demod/DemodulatorPreThread.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/demod/DemodulatorPreThread.cpp b/src/demod/DemodulatorPreThread.cpp index 049014b..09d2801 100644 --- a/src/demod/DemodulatorPreThread.cpp +++ b/src/demod/DemodulatorPreThread.cpp @@ -327,9 +327,9 @@ void DemodulatorPreThread::setBandwidth(int bandwidth) { } int DemodulatorPreThread::getBandwidth() { - if (bandwidthChanged.load()) { - return newBandwidth; - } +// if (bandwidthChanged.load()) { +// return newBandwidth; +// } return currentBandwidth; }