Split script navigation state and edit state

This commit is contained in:
kobewi 2022-09-23 14:46:28 +02:00
parent ef26618359
commit 14435ebcee
8 changed files with 43 additions and 21 deletions

View file

@ -346,6 +346,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);
}