LiveDebug
| 830 | |
| 831 | // LiveDebug |
| 832 | void EditorDebuggerNode::set_live_debugging(bool p_enabled) { |
| 833 | _for_all(tabs, [&](ScriptEditorDebugger *dbg) { |
| 834 | dbg->set_live_debugging(p_enabled); |
| 835 | }); |
| 836 | } |
| 837 | |
| 838 | void EditorDebuggerNode::update_live_edit_root() { |
| 839 | _for_all(tabs, [&](ScriptEditorDebugger *dbg) { |
no test coverage detected