aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/shapes/linearGradient.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/shapes/linearGradient.qml')
-rw-r--r--examples/quick/shapes/linearGradient.qml6
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/quick/shapes/linearGradient.qml b/examples/quick/shapes/linearGradient.qml
index 8ab6d7407d..742f8622e9 100644
--- a/examples/quick/shapes/linearGradient.qml
+++ b/examples/quick/shapes/linearGradient.qml
@@ -27,13 +27,15 @@ Rectangle {
PathArc {
x: shape.width / 2 + p.xr
y: shape.height / 2 + p.yr
- radiusX: p.xr; radiusY: p.yr
+ radiusX: p.xr
+ radiusY: p.yr
useLargeArc: true
}
PathArc {
x: shape.width / 2 - p.xr
y: shape.height / 2 - p.yr
- radiusX: p.xr; radiusY: p.yr
+ radiusX: p.xr
+ radiusY: p.yr
useLargeArc: true
}
}