aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRémi Verschelde2016-05-01 23:06:30 +0200
committerRémi Verschelde2016-05-06 11:07:17 +0200
commit40681d90e57b41ab10142145e216fb6a71d227fb (patch)
treeb1884d5a93dedf67ee01ee4ce50e53119006d109 /tools
parentfbb8a2170c16bc6ecb5fbead4ed195a984c82a2b (diff)
downloadgodot-40681d90e57b41ab10142145e216fb6a71d227fb.tar.gz
godot-40681d90e57b41ab10142145e216fb6a71d227fb.tar.zst
godot-40681d90e57b41ab10142145e216fb6a71d227fb.zip
Debugger: Fix breaked signal binding (#4508)
Closes #4270. (cherry picked from commit 8ceab5ddaf141434cda982a04bdf4a8f4b0b5155)
Diffstat (limited to 'tools')
-rw-r--r--tools/editor/script_editor_debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/script_editor_debugger.cpp b/tools/editor/script_editor_debugger.cpp
index fed5ab1a1..90d162c70 100644
--- a/tools/editor/script_editor_debugger.cpp
+++ b/tools/editor/script_editor_debugger.cpp
@@ -1199,7 +1199,7 @@ void ScriptEditorDebugger::_bind_methods() {
ObjectTypeDB::bind_method(_MD("live_debug_reparent_node"),&ScriptEditorDebugger::live_debug_reparent_node);
ADD_SIGNAL(MethodInfo("goto_script_line"));
- ADD_SIGNAL(MethodInfo("breaked",PropertyInfo(Variant::BOOL,"reallydid")));
+ ADD_SIGNAL(MethodInfo("breaked",PropertyInfo(Variant::BOOL,"reallydid"),PropertyInfo(Variant::BOOL,"can_debug")));
ADD_SIGNAL(MethodInfo("show_debugger",PropertyInfo(Variant::BOOL,"reallydid")));
}