diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-08-04 20:17:13 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-08-04 20:17:39 -0300 |
commit | 8280bb0de0737f9149face902db21192a0d98ca8 (patch) | |
tree | 0f6d5f0cfe4c41d600f99df8c9e03a611bc74e9c /tools/editor/plugins/script_editor_plugin.cpp | |
parent | 09a2de99169e9cf50d00febafad3a6705aa8d88a (diff) | |
download | redot-engine-8280bb0de0737f9149face902db21192a0d98ca8.tar.gz |
more debugger fixes
-setting/clearing breakpoints during run-time now works
-multi-line strings resulted in wrong line numbers in bytecode, fixed
Diffstat (limited to 'tools/editor/plugins/script_editor_plugin.cpp')
-rw-r--r-- | tools/editor/plugins/script_editor_plugin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/editor/plugins/script_editor_plugin.cpp b/tools/editor/plugins/script_editor_plugin.cpp index 3ef240e74c..302e4f2196 100644 --- a/tools/editor/plugins/script_editor_plugin.cpp +++ b/tools/editor/plugins/script_editor_plugin.cpp @@ -1101,6 +1101,7 @@ void ScriptEditor::_menu_option(int p_option) { int line=current->get_text_edit()->cursor_get_line(); bool dobreak = !current->get_text_edit()->is_line_set_as_breakpoint(line); current->get_text_edit()->set_line_as_breakpoint(line,dobreak); + get_debugger()->set_breakpoint(current->get_edited_script()->get_path(),line+1,dobreak); } break; case DEBUG_NEXT: { |