diff --git a/src/plugins/debugger/dap/dapengine.cpp b/src/plugins/debugger/dap/dapengine.cpp index f19ab2aacd1..e311bb36822 100644 --- a/src/plugins/debugger/dap/dapengine.cpp +++ b/src/plugins/debugger/dap/dapengine.cpp @@ -692,9 +692,6 @@ void DapEngine::handleResponse(DapResponseType type, const QJsonObject &response case DapResponseType::SetBreakpoints: handleBreakpointResponse(response); break; - case DapResponseType::Attach: - notifyInferiorRunOk(); - break; default: showMessage("UNKNOWN RESPONSE:" + command); }; diff --git a/src/plugins/debugger/dap/lldbdapengine.cpp b/src/plugins/debugger/dap/lldbdapengine.cpp index a42573c2a6a..4dc38ca857e 100644 --- a/src/plugins/debugger/dap/lldbdapengine.cpp +++ b/src/plugins/debugger/dap/lldbdapengine.cpp @@ -193,7 +193,7 @@ void LldbDapEngine::handleDapConfigurationDone() return; } - notifyEngineRunAndInferiorStopOk(); + notifyEngineRunAndInferiorRunOk(); } void LldbDapEngine::setupEngine()