aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/shapes/content/item13.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/shapes/content/item13.qml')
-rw-r--r--examples/quick/shapes/content/item13.qml14
1 files changed, 6 insertions, 8 deletions
diff --git a/examples/quick/shapes/content/item13.qml b/examples/quick/shapes/content/item13.qml
index 8a69454b7c..93160af7d8 100644
--- a/examples/quick/shapes/content/item13.qml
+++ b/examples/quick/shapes/content/item13.qml
@@ -71,14 +71,12 @@ Rectangle {
strokeStyle: ShapePath.DashLine
strokeWidth: 4
- Path {
- startX: 4; startY: 4
- PathArc {
- id: arc
- x: 96; y: 96
- radiusX: 100; radiusY: 100
- direction: model.index === 0 ? PathArc.Clockwise : PathArc.Counterclockwise
- }
+ startX: 4; startY: 4
+ PathArc {
+ id: arc
+ x: 96; y: 96
+ radiusX: 100; radiusY: 100
+ direction: model.index === 0 ? PathArc.Clockwise : PathArc.Counterclockwise
}
}
}