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

Save history when goto script line in the text editor.

This commit is contained in:
Adam Scott
2023-01-15 18:04:35 -05:00
parent 91fedb60de
commit 0dc1bcb0c9

View File

@@ -439,6 +439,8 @@ void ScriptEditor::_goto_script_line(Ref<RefCounted> p_script, int p_line) {
} else if (current) {
current->goto_line(p_line, true);
}
_save_history();
}
}
}