From ef1c8b079cfaf0750bbc3c2e24340d31e3a6fa1f Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Thu, 30 Apr 2020 12:15:23 -0400 Subject: [PATCH] Aid for color blindness: darken the green used to mark Rx freq and signal BW. --- widgets/plotter.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/widgets/plotter.cpp b/widgets/plotter.cpp index 74fc2c020..b4aecbde5 100644 --- a/widgets/plotter.cpp +++ b/widgets/plotter.cpp @@ -330,7 +330,8 @@ void CPlotter::DrawOverlay() //DrawOverlay() double df = m_binsPerPixel*m_fftBinWidth; QPen penOrange(QColor(255,165,0),3); - QPen penGreen(Qt::green, 3); //Mark Tol range with green line +// QPen penGreen(Qt::green, 3); //Mark Tol range with green line + QPen penGreen(QColor(15,153,105), 3); //Mark Tol range or BW with dark green line QPen penRed(Qt::red, 3); //Mark Tx freq with red QPainter painter(&m_OverlayPixmap); painter.setBackground (palette ().brush (backgroundRole ()));