Fix DAP breakpoints being cleared on closed scripts
(cherry picked from commit 760ff2e933
)
This commit is contained in:
parent
c9924b11a4
commit
c8fabac8c7
|
@ -536,7 +536,7 @@ void ScriptEditor::_set_breakpoint(Ref<RefCounted> p_script, int p_line, bool p_
|
||||||
}
|
}
|
||||||
state["breakpoints"] = breakpoints;
|
state["breakpoints"] = breakpoints;
|
||||||
script_editor_cache->set_value(scr->get_path(), "state", state);
|
script_editor_cache->set_value(scr->get_path(), "state", state);
|
||||||
EditorDebuggerNode::get_singleton()->set_breakpoint(scr->get_path(), p_line + 1, false);
|
EditorDebuggerNode::get_singleton()->set_breakpoint(scr->get_path(), p_line + 1, p_enabled);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue