1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-25 04:53:27 -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
+4 -4
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;