Now you can change the thickness of the drawing tools!

This commit is contained in:
lupoDharkael
2017-08-17 14:47:27 +02:00
parent 321ec1b555
commit b966a10c09
40 changed files with 244 additions and 62 deletions

View File

@@ -102,7 +102,8 @@ void Screenshot::paintInPainter(QPainter &painter,
{
const QVector<QPoint> &points = modification->points();
QColor color = modification->color();
modification->tool()->processImage(painter, points, color);
int thickness = modification->thickness();
modification->tool()->processImage(painter, points, color, thickness);
}