summaryrefslogtreecommitdiffstats
path: root/tests/manual/enabled-qml/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/enabled-qml/main.qml')
-rw-r--r--tests/manual/enabled-qml/main.qml14
1 files changed, 9 insertions, 5 deletions
diff --git a/tests/manual/enabled-qml/main.qml b/tests/manual/enabled-qml/main.qml
index 8ee933eb6..6191fde1b 100644
--- a/tests/manual/enabled-qml/main.qml
+++ b/tests/manual/enabled-qml/main.qml
@@ -111,9 +111,11 @@ Entity {
// Sphere
Entity {
- SphereMesh {
+ GeometryRenderer {
id: sphereMesh
- enabled: counter !== 0
+ view: SphereMesh {
+ enabled: counter !== 0
+ }
}
PhongMaterial {
@@ -184,10 +186,12 @@ Entity {
// Floor
Entity {
- PlaneMesh {
+ GeometryRenderer {
id: planeMesh
- width: 25.0
- height: 10
+ view: PlaneMesh {
+ width: 25.0
+ height: 10
+ }
}
PhongMaterial {