1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-08-14 15:33:34 -04:00

Highlight demod frame when the marker is highlighted on the spectrum

This commit is contained in:
f4exb
2017-11-14 22:58:35 +01:00
parent 84113775aa
commit 3db655fe61
24 changed files with 90 additions and 2 deletions
@@ -296,6 +296,7 @@ DSDDemodGUI::DSDDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseban
m_deviceUISet->addRollupWidget(this);
connect(&m_channelMarker, SIGNAL(changedByCursor()), this, SLOT(channelMarkerChangedByCursor()));
connect(&m_channelMarker, SIGNAL(highlightedByCursor()), this, SLOT(channelMarkerHighlightedByCursor()));
ui->scopeGUI->setBuddies(m_scopeVis->getInputMessageQueue(), m_scopeVis, ui->glScope);
@@ -556,6 +557,10 @@ void DSDDemodGUI::channelMarkerChangedByCursor()
applySettings();
}
void DSDDemodGUI::channelMarkerHighlightedByCursor()
{
setHighlighted(m_channelMarker.getHighlighted());
}
void DSDDemodGUI::tick()
{