diff --git a/src/texturegenerator.cpp b/src/texturegenerator.cpp index 6d626fd4..23d5a0da 100644 --- a/src/texturegenerator.cpp +++ b/src/texturegenerator.cpp @@ -130,7 +130,7 @@ QPainterPath TextureGenerator::expandedPainterPath(const QPainterPath &painterPa { QPainterPathStroker stroker; stroker.setWidth(expandSize); - stroker.setJoinStyle(Qt::MiterJoin); + stroker.setJoinStyle(Qt::RoundJoin); return (stroker.createStroke(painterPath) + painterPath).simplified(); }