diff --git a/src/plugins/debugger/qml/qmlv8debuggerclient.cpp b/src/plugins/debugger/qml/qmlv8debuggerclient.cpp index 8b58568b644..4a7bbc63843 100644 --- a/src/plugins/debugger/qml/qmlv8debuggerclient.cpp +++ b/src/plugins/debugger/qml/qmlv8debuggerclient.cpp @@ -1109,8 +1109,9 @@ void QmlV8DebuggerClient::changeBreakpoint(const BreakpointModelId &id) } else { //V8 supports only minimalistic changes in breakpoint //Remove the breakpoint and add again - removeBreakpoint(id); - d->engine->insertBreakpoint(id); + handler->notifyBreakpointChangeOk(id); + handler->removeBreakpoint(id); + handler->appendBreakpoint(params); } }