diff --git a/src/plugins/debugger/qml/qmlengine.cpp b/src/plugins/debugger/qml/qmlengine.cpp index 4155a9fd58f..172a9e95800 100644 --- a/src/plugins/debugger/qml/qmlengine.cpp +++ b/src/plugins/debugger/qml/qmlengine.cpp @@ -490,6 +490,7 @@ void QmlEngine::executeStep() rs << cmd; logMessage(LogSend, cmd); sendMessage(reply); + resetLocation(); notifyInferiorRunRequested(); notifyInferiorRunOk(); } @@ -502,6 +503,7 @@ void QmlEngine::executeStepI() rs << cmd; logMessage(LogSend, cmd); sendMessage(reply); + resetLocation(); notifyInferiorRunRequested(); notifyInferiorRunOk(); } @@ -514,6 +516,7 @@ void QmlEngine::executeStepOut() rs << cmd; logMessage(LogSend, cmd); sendMessage(reply); + resetLocation(); notifyInferiorRunRequested(); notifyInferiorRunOk(); } @@ -526,6 +529,7 @@ void QmlEngine::executeNext() rs << cmd; logMessage(LogSend, cmd); sendMessage(reply); + resetLocation(); notifyInferiorRunRequested(); notifyInferiorRunOk(); }