From 3cad04e17ca77c130839abccc98381a05c4ae07b Mon Sep 17 00:00:00 2001 From: Gunnar Sletta Date: Mon, 22 Aug 2011 13:45:02 +0200 Subject: [PATCH] show also blocked subtree's when dumping the graph Change-Id: I4c35c0aae6dcbe51a01edc49118f3375d6f5a8f1 Reviewed-on: http://codereview.qt.nokia.com/3313 Reviewed-by: Kim M. Kalland --- src/declarative/scenegraph/coreapi/qsgnode.cpp | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/src/declarative/scenegraph/coreapi/qsgnode.cpp b/src/declarative/scenegraph/coreapi/qsgnode.cpp index c7b104f..70ca1fb 100644 --- a/src/declarative/scenegraph/coreapi/qsgnode.cpp +++ b/src/declarative/scenegraph/coreapi/qsgnode.cpp @@ -1264,8 +1264,6 @@ void QSGNodeDumper::dump(QSGNode *n) void QSGNodeDumper::visitNode(QSGNode *n) { - if (n->isSubtreeBlocked()) - return; qDebug() << QString(m_indent * 2, QLatin1Char(' ')) << n; QSGNodeVisitor::visitNode(n); } -- 1.7.2.5