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 13:41:34 +0000
commit59721758afe9d7034ca76f1a19c3c5c97610ceaa (patch)
tree048ee013e9a0196c257719183dd72a8120e34e11
parent6be176728e8bf17a2714b6d79f7442a485f385ec (diff)
EllipseItem: Workaround for QDS-11845qds-dev-4.4-snapshot2
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