From 83e23dbbf7bf3de3e0994e87bccf05bc0d497744 Mon Sep 17 00:00:00 2001 From: Mark Liversedge Date: Mon, 11 Nov 2013 22:11:38 +0000 Subject: [PATCH] UI Nits: Thinner reference line 2px too thick for a guide, made 1px which is in line with the rest of the code. --- src/AllPlot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AllPlot.cpp b/src/AllPlot.cpp index 853acf4d3..6eb92e50a 100644 --- a/src/AllPlot.cpp +++ b/src/AllPlot.cpp @@ -1066,7 +1066,7 @@ AllPlot::plotReferenceLine(const RideFilePoint *referencePoint) referenceLine = new QwtPlotCurve(tr("Power Ref")); referenceLine->setYAxis(yLeft); QPen wattsPen = QPen(GColor(CPOWER)); - wattsPen.setWidth(2); + wattsPen.setWidth(1); wattsPen.setStyle(Qt::DashLine); referenceLine->setPen(wattsPen);