aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2011-08-25 13:14:28 +0200
committerhjk <qthjk@ovi.com>2011-08-25 14:12:13 +0200
commit4b96d7d8675bcf71011f69018a3716d2c5fba26f (patch)
tree31d01ca4de521600d79101a6a2bcb620339730b3
parentc014765299fc1fb7b585cc359fd661259f978c96 (diff)
QmlCpp debugger: Fix clicking on QML stack traces
Change-Id: I1e83dfc490bc871d106fb44357759829b3a1a6c4 Reviewed-on: http://codereview.qt.nokia.com/3593 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: hjk <qthjk@ovi.com>
-rw-r--r--src/plugins/debugger/qml/qmlcppengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/qml/qmlcppengine.cpp b/src/plugins/debugger/qml/qmlcppengine.cpp
index e14db93bb4..e04230da71 100644
--- a/src/plugins/debugger/qml/qmlcppengine.cpp
+++ b/src/plugins/debugger/qml/qmlcppengine.cpp
@@ -129,7 +129,7 @@ void QmlCppEnginePrivate::qmlStackChanged()
{
StackFrames frames = m_qmlEngine->stackHandler()->frames();
q->stackHandler()->setFrames(frames);
- m_stackBoundary = frames.size();
+ m_stackBoundary = 0;
}