aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Hartmann <thomas.hartmann@qt.io>2024-01-30 17:06:50 +0100
committerThomas Hartmann <thomas.hartmann@qt.io>2024-01-31 16:32:41 +0000
commit3e9415155de1221beb6478682ea48562a22d01cb (patch)
treed4e536a0c4c7bf6d97f852cb392580c070aae5e4
parent41e60b9dc50f8841a594de9f95ff559b31e02fdc (diff)
EllipseItem: Workaround for QDS-11845
Change-Id: Ic4f70940b3e5cbc2ba84f282283fe3db43f2e125 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
-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