aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/imports/components/EllipseItem.qml6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/imports/components/EllipseItem.qml b/src/imports/components/EllipseItem.qml
index b005285..8d9dd14 100644
--- a/src/imports/components/EllipseItem.qml
+++ b/src/imports/components/EllipseItem.qml
@@ -69,7 +69,9 @@ Shape {
\sa Qt::PenStyle
*/
- property alias strokeStyle: path.strokeStyle
+
+ //property alias strokeStyle: path.strokeStyle
+ property int strokeStyle: ShapePath.SolidLine //workaround for regression in Qt 6.6.1 (QDS-11845)
/*!
The width of the border of the rectangle.
@@ -181,6 +183,8 @@ Shape {
startX: root.width * 0.5
startY: root.borderOffset
+ strokeStyle: root.strokeStyle
+
PathArc {
x: path.startX
y: root.height - root.borderOffset