mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 16:18:42 +00:00
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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user