Don't let mouse-click on WindGraph move frequencies in FST240W mode.

This commit is contained in:
Joe Taylor 2020-07-03 09:58:52 -04:00
parent b9e92c416f
commit f9e9a4e1ec

View File

@ -697,7 +697,7 @@ int CPlotter::rxFreq() {return m_rxFreq;} //rxFreq
void CPlotter::mouseReleaseEvent (QMouseEvent * event)
{
if (Qt::LeftButton == event->button ()) {
if (Qt::LeftButton == event->button () and m_mode!="FST240W") {
int x=event->x();
if(x<0) x=0;
if(x>m_Size.width()) x=m_Size.width();