From 421a66b1019649e6e1a7709042cc7a9e5eaeca55 Mon Sep 17 00:00:00 2001 From: Ulf Hermann Date: Tue, 2 Aug 2016 15:46:48 +0200 Subject: [PATCH] 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 --- src/plugins/debugger/qml/qmlengine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/debugger/qml/qmlengine.cpp b/src/plugins/debugger/qml/qmlengine.cpp index a50c319af92..270f75ab11d 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)