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

Merge pull request #66300 from KoBeWi/📝🧭

Split script navigation state and edit state
This commit is contained in:
Rémi Verschelde
2022-10-05 08:30:49 +02:00
8 changed files with 43 additions and 21 deletions

View File

@@ -347,6 +347,10 @@ void ScriptTextEditor::set_edit_state(const Variant &p_state) {
}
}
Variant ScriptTextEditor::get_navigation_state() {
return code_editor->get_navigation_state();
}
void ScriptTextEditor::_convert_case(CodeTextEditor::CaseStyle p_case) {
code_editor->convert_case(p_case);
}