UI Nits: Thinner reference line

2px too thick for a guide, made 1px which is in
line with the rest of the code.
This commit is contained in:
Mark Liversedge
2013-11-11 22:11:38 +00:00
parent 623dca7a26
commit 83e23dbbf7

View File

@@ -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);