aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/declarative/particles/allsmiles/ultraparticles.qml2
-rw-r--r--examples/declarative/particles/modelparticles/gridsplosion.qml2
-rw-r--r--examples/declarative/particles/trails/turbulence.qml4
3 files changed, 4 insertions, 4 deletions
diff --git a/examples/declarative/particles/allsmiles/ultraparticles.qml b/examples/declarative/particles/allsmiles/ultraparticles.qml
index 0ea095deb6..eda1c8f859 100644
--- a/examples/declarative/particles/allsmiles/ultraparticles.qml
+++ b/examples/declarative/particles/allsmiles/ultraparticles.qml
@@ -104,6 +104,6 @@ Rectangle{
anchors.margins: 16
text: "... can you be trusted with the power?"
style: Text.Outline; styleColor: "#AAAAAA"
- font.pixelSize: 32
+ font.pixelSize: width > 400 ? 32 : 16
}
}
diff --git a/examples/declarative/particles/modelparticles/gridsplosion.qml b/examples/declarative/particles/modelparticles/gridsplosion.qml
index db860125e5..9232eb426d 100644
--- a/examples/declarative/particles/modelparticles/gridsplosion.qml
+++ b/examples/declarative/particles/modelparticles/gridsplosion.qml
@@ -42,7 +42,7 @@ import QtQuick 2.0
import QtQuick.Particles 2.0
import "content"
-Item{
+Rectangle{
id: root
width: 240
height: 240
diff --git a/examples/declarative/particles/trails/turbulence.qml b/examples/declarative/particles/trails/turbulence.qml
index 6159b3e9c9..3f822c7889 100644
--- a/examples/declarative/particles/trails/turbulence.qml
+++ b/examples/declarative/particles/trails/turbulence.qml
@@ -43,7 +43,7 @@ import QtQuick.Particles 2.0
Rectangle{
width: 360
- height: 540
+ height: 600
color: "#222222"
id: root
Image{
@@ -96,7 +96,7 @@ Rectangle{
FollowEmitter{
id: smoke1
width: root.width
- height: 232
+ height: 258
system: ps
particle: "smoke"
follow: "flame"