From 75e03c778466d5a646b771970d77b223ddc91354 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Mon, 16 Jan 2017 17:54:22 +0000 Subject: [PATCH] Put red sync marker for QRA64 also on the top (wideband) waterfall. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@7510 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- plotter.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plotter.cpp b/plotter.cpp index feed46b48..ae633e29c 100644 --- a/plotter.cpp +++ b/plotter.cpp @@ -147,6 +147,9 @@ void CPlotter::paintEvent(QPaintEvent *) // paintEvent() y=(sync-1.5)*2.0; if(y>15.0) y=15.0; if(x>=0 and x<=w) painter2.drawLine(x,0,x,y); + x=XfromFreq(float(fQSO()+0.001*freq)); + painter.setPen(pen0); + painter.drawLine(x,30,x,30+y); } f.close(); }