aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGunnar Sletta <gunnar.sletta@nokia.com>2011-09-26 10:45:28 +0200
committerQt by Nokia <qt-info@nokia.com>2011-09-26 11:46:58 +0200
commit6fc6683284a7c4d68aefb0c4a6bcb814da1de457 (patch)
tree753d9360f37a8bd679a8393fa6c5ea6e4cd52a75
parent73a9e0a7657112cac94107f771c33270467eff08 (diff)
Disable reordering as it is currently broken
Change-Id: I28b622422aff62ea988a2918830338736df6fdbe Reviewed-on: http://codereview.qt-project.org/5528 Reviewed-by: Kim M. Kalland <kim.kalland@nokia.com> Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
-rw-r--r--src/declarative/scenegraph/coreapi/qsgdefaultrenderer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/scenegraph/coreapi/qsgdefaultrenderer.cpp b/src/declarative/scenegraph/coreapi/qsgdefaultrenderer.cpp
index 93d8ca01f1..ffecfc4806 100644
--- a/src/declarative/scenegraph/coreapi/qsgdefaultrenderer.cpp
+++ b/src/declarative/scenegraph/coreapi/qsgdefaultrenderer.cpp
@@ -377,7 +377,7 @@ void QSGDefaultRenderer::buildLists(QSGNode *node)
#ifdef FORCE_NO_REORDER
static bool reorder = false;
#else
- static bool reorder = !qApp->arguments().contains(QLatin1String("--no-reorder"));
+ static bool reorder = qApp->arguments().contains(QLatin1String("--reorder"));
#endif
if (reorder && node->firstChild() != node->lastChild() && (node->flags() & QSGNode::ChildrenDoNotOverlap)) {