diff options
Diffstat (limited to 'src/quickshapes/designhelpers/qquickregularpolygonshape.cpp')
| -rw-r--r-- | src/quickshapes/designhelpers/qquickregularpolygonshape.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/quickshapes/designhelpers/qquickregularpolygonshape.cpp b/src/quickshapes/designhelpers/qquickregularpolygonshape.cpp index 29d5ba40fa..d52196a43d 100644 --- a/src/quickshapes/designhelpers/qquickregularpolygonshape.cpp +++ b/src/quickshapes/designhelpers/qquickregularpolygonshape.cpp @@ -223,8 +223,9 @@ QQuickRegularPolygonShape::QQuickRegularPolygonShape(QQuickItem *parent) d->path = new QQuickShapePath(this); d->path->setAsynchronous(true); - d->path->setStrokeWidth(4); - d->path->setStrokeColor(QColorConstants::Red); + d->path->setStrokeWidth(1); + d->path->setStrokeColor(QColorConstants::Black); + d->path->setFillColor(QColorConstants::White); d->sp.append(d->path); d->path->setParent(this); |
