mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-08-29 13:47:47 +00:00
Reduced line width in footer of charts.
This commit is contained in:
parent
6109ec70b8
commit
0909e8bd08
@ -53,7 +53,9 @@ void PaintChartLine(
|
|||||||
const auto yPoint = (1. - yPercentage) * c.rect.height();
|
const auto yPoint = (1. - yPercentage) * c.rect.height();
|
||||||
chartPoints << QPointF(xPoint, yPoint);
|
chartPoints << QPointF(xPoint, yPoint);
|
||||||
}
|
}
|
||||||
p.setPen(QPen(line.color, st::statisticsChartLineWidth));
|
p.setPen(QPen(
|
||||||
|
line.color,
|
||||||
|
c.footer ? st::lineWidth : st::statisticsChartLineWidth));
|
||||||
p.setBrush(Qt::NoBrush);
|
p.setBrush(Qt::NoBrush);
|
||||||
p.drawPolyline(chartPoints);
|
p.drawPolyline(chartPoints);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user