summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2016-08-02 15:46:48 +0200
committerUlf Hermann <ulf.hermann@qt.io>2016-08-02 13:51:55 +0000
commit421a66b1019649e6e1a7709042cc7a9e5eaeca55 (patch)
tree45098fde6bda69a648e4ac8ebbf3a9adcdbf16fa
parent4bbd89d1b37800773802914cdfff62d43b5cb0de (diff)
downloadqt-creator-421a66b1019649e6e1a7709042cc7a9e5eaeca55.tar.gz
Debugger: Only clear the locals view when updating the QML locals
There is no reason to clear all the other views, too. The inspector view stays valid across interruptions and the C++ views have nothing to do with this at all. Change-Id: I7a0bfe160a6b3c0134d592abef9c10f95fcfcd3f Task-number: QTCREATORBUG-16692 Reviewed-by: hjk <hjk@qt.io>
-rw-r--r--src/plugins/debugger/qml/qmlengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/qml/qmlengine.cpp b/src/plugins/debugger/qml/qmlengine.cpp
index a50c319af9..270f75ab11 100644
--- a/src/plugins/debugger/qml/qmlengine.cpp
+++ b/src/plugins/debugger/qml/qmlengine.cpp
@@ -2155,7 +2155,7 @@ void QmlEnginePrivate::handleFrame(const QVariantMap &response)
StackHandler *stackHandler = engine->stackHandler();
WatchHandler * watchHandler = engine->watchHandler();
- watchHandler->notifyUpdateStarted();
+ watchHandler->notifyUpdateStarted({"local"});
const int frameIndex = stackHandler->currentIndex();
if (frameIndex < 0)