diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-01-23 19:51:51 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-01-23 19:51:51 -0300 |
commit | 6c27df8df609337867c108c5adb66174393e190b (patch) | |
tree | 11c1e8ad5f1f844fe6af2032784fd8e2a2951420 /tools/editor/script_editor_debugger.cpp | |
parent | a2992d5955ff4f84f829dcab4859b4f5b5399a2c (diff) |
-Fixes a bunch of stdout errors, closes #2763 closes #2731
Diffstat (limited to 'tools/editor/script_editor_debugger.cpp')
-rw-r--r-- | tools/editor/script_editor_debugger.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/editor/script_editor_debugger.cpp b/tools/editor/script_editor_debugger.cpp index 297f10a1c8..e727668c49 100644 --- a/tools/editor/script_editor_debugger.cpp +++ b/tools/editor/script_editor_debugger.cpp @@ -530,6 +530,8 @@ void ScriptEditorDebugger::_notification(int p_what) { case NOTIFICATION_ENTER_TREE: { + inspector->edit(variables); + step->set_icon( get_icon("DebugStep","EditorIcons")); next->set_icon( get_icon("DebugNext","EditorIcons")); back->set_icon( get_icon("Back","EditorIcons")); @@ -1308,7 +1310,7 @@ ScriptEditorDebugger::ScriptEditorDebugger(EditorNode *p_editor){ pending_in_queue=0; variables = memnew( ScriptEditorDebuggerVariables ); - inspector->edit(variables); + breaked=false; tabs->add_child(dbg); |