From ce37489245ca20c43dcc47c5a5cf0ed8e7776851 Mon Sep 17 00:00:00 2001 From: Jon Beniston Date: Mon, 20 Apr 2026 09:35:39 +0100 Subject: [PATCH] NFMMod: Fix center frequency display. --- plugins/channeltx/modnfm/nfmmod.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/channeltx/modnfm/nfmmod.cpp b/plugins/channeltx/modnfm/nfmmod.cpp index 81b64257a..c6adcb31e 100644 --- a/plugins/channeltx/modnfm/nfmmod.cpp +++ b/plugins/channeltx/modnfm/nfmmod.cpp @@ -281,10 +281,10 @@ bool NFMMod::handleMessage(const Message& cmd) auto* rep = new DSPSignalNotification(notif); // make a copy qDebug() << "NFMMod::handleMessage: DSPSignalNotification"; m_basebandSource->getInputMessageQueue()->push(rep); - // Forward to GUI if any - if (getMessageQueueToGUI()) { - getMessageQueueToGUI()->push(new DSPSignalNotification(notif)); - } + } + // Forward to GUI if any + if (getMessageQueueToGUI()) { + getMessageQueueToGUI()->push(new DSPSignalNotification(notif)); } return true;