1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Added a marker in text_edit that tells which row is executing.

This commit is contained in:
Rikhardur Bjarni Einarsson
2019-04-22 17:20:27 +01:00
parent 886afa9b76
commit 9bfa63496a
18 changed files with 152 additions and 0 deletions

View File

@@ -1177,6 +1177,14 @@ void CodeTextEditor::goto_line_selection(int p_line, int p_begin, int p_end) {
text_editor->select(p_line, p_begin, p_line, p_end);
}
void CodeTextEditor::set_executing_line(int p_line) {
text_editor->set_executing_line(p_line);
}
void CodeTextEditor::clear_executing_line() {
text_editor->clear_executing_line();
}
Variant CodeTextEditor::get_edit_state() {
Dictionary state;