From f9e9a4e1ec4e86caf1638e53c4c33270cff412dd Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Fri, 3 Jul 2020 09:58:52 -0400 Subject: [PATCH] Don't let mouse-click on WindGraph move frequencies in FST240W mode. --- widgets/plotter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/plotter.cpp b/widgets/plotter.cpp index 41bf173fe..160f55b10 100644 --- a/widgets/plotter.cpp +++ b/widgets/plotter.cpp @@ -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();