aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/node/tst_nodestest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/node/tst_nodestest.cpp')
-rw-r--r--tests/auto/declarative/node/tst_nodestest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/declarative/node/tst_nodestest.cpp b/tests/auto/declarative/node/tst_nodestest.cpp
index a1b0a6ac91..fc159b98e9 100644
--- a/tests/auto/declarative/node/tst_nodestest.cpp
+++ b/tests/auto/declarative/node/tst_nodestest.cpp
@@ -196,14 +196,14 @@ public:
if (renderer->rootNode()->parent()) {
// Mark the root dirty to build a clean state from the root and down
- renderer->rootNode()->markDirty(QSGNode::DirtyAll);
+ renderer->rootNode()->markDirty(QSGNode::DirtyForceUpdate);
}
renderer->renderScene();
if (renderer->rootNode()->parent()) {
// Mark the parent of the root dirty to force the root and down to be updated.
- renderer->rootNode()->parent()->markDirty(QSGNode::DirtyAll);
+ renderer->rootNode()->parent()->markDirty(QSGNode::DirtyForceUpdate);
}
}