From 59721758afe9d7034ca76f1a19c3c5c97610ceaa Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Tue, 30 Jan 2024 17:06:50 +0100 Subject: EllipseItem: Workaround for QDS-11845 Change-Id: Ic4f70940b3e5cbc2ba84f282283fe3db43f2e125 Reviewed-by: Thomas Hartmann --- src/imports/components/EllipseItem.qml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3