mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-05-24 03:02:29 -04:00
Spectrum: Keep frequency displayed while channel is being dragged
This commit is contained in:
parent
e4b12f1c7f
commit
29c9c07b74
@ -3930,12 +3930,17 @@ void GLSpectrumView::mouseMoveEvent(QMouseEvent* event)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (m_channelMarkerStates[i]->m_channelMarker->getHighlighted())
|
else if (m_channelMarkerStates[i]->m_channelMarker->getHighlighted())
|
||||||
|
{
|
||||||
|
// Don't clear highlight while dragging a channel, as we want the
|
||||||
|
// frequency of the channel to be continuously displayed
|
||||||
|
if (m_cursorState != CSChannelMoving)
|
||||||
{
|
{
|
||||||
m_channelMarkerStates[i]->m_channelMarker->setHighlightedByCursor(false);
|
m_channelMarkerStates[i]->m_channelMarker->setHighlightedByCursor(false);
|
||||||
channelMarkerChanged();
|
channelMarkerChanged();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (m_cursorState == CSChannel)
|
if (m_cursorState == CSChannel)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user