mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-29 05:29:23 +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();
|
||||
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.drawPolyline(chartPoints);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user