CP 'this' curve more prominent

Made 2px line rather than 1px to make it more
prominent on the CP chart.
This commit is contained in:
Mark Liversedge
2012-12-22 11:05:04 +00:00
parent 46ab95ad2c
commit 162dd3df55

View File

@@ -706,7 +706,10 @@ CpintPlot::calculate(RideItem *rideItem)
thisCurve = new QwtPlotCurve(dateTime.toString(tr("ddd MMM d, yyyy h:mm AP")));
thisCurve->setRenderHint(QwtPlotItem::RenderAntialiased);
thisCurve->setPen(QPen(Qt::black));
QPen black;
black.setColor(Qt::black);
black.setWidth(2.0);
thisCurve->setPen(black);
thisCurve->attach(this);
if (series == RideFile::none) {