1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-05-23 08:37:06 -04:00

Merge pull request #2705 from srcejon/fix_nfmmod_centerfreq

NFMMod: Fix center frequency display.
This commit is contained in:
Edouard Griffiths 2026-04-22 16:27:18 +02:00 committed by GitHub
commit 1f1b77fdbe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;