Merge pull request #114457 from kbieganski/always-stop-script-debugger

Always stop script debugger when stopping game
This commit is contained in:
Thaddeus Crews
2026-01-06 09:56:58 -06:00
+1 -3
View File
@@ -321,9 +321,7 @@ void EditorDebuggerNode::stop(bool p_force) {
// Also close all debugging sessions.
_for_all(tabs, [&](ScriptEditorDebugger *dbg) {
if (dbg->is_session_active()) {
dbg->_stop_and_notify();
}
dbg->_stop_and_notify();
});
_break_state_changed();
breakpoints.clear();