mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 03:21:25 +00:00
Fix crash when edit remote object instance after debugger stoped
This commit is contained in:
parent
1473e23df8
commit
29cd034e23
3 changed files with 16 additions and 2 deletions
|
|
@ -250,6 +250,10 @@ void ScriptEditorDebugger::debug_continue() {
|
|||
ppeer->put_var(msg);
|
||||
}
|
||||
|
||||
bool ScriptEditorDebugger::is_connected() const {
|
||||
return connection.is_valid() && connection->is_connected();
|
||||
}
|
||||
|
||||
void ScriptEditorDebugger::_scene_tree_folded(Object *obj) {
|
||||
|
||||
if (updating_scene_tree) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue