Fix ScriptTextEditor encapsulation

This commit is contained in:
Yuri Roubinsky 2019-12-18 22:32:25 +03:00
parent 9cda7f7333
commit c89df816c1
5 changed files with 15 additions and 13 deletions

View file

@ -966,6 +966,12 @@ void ScriptTextEditor::_lookup_symbol(const String &p_symbol, int p_row, int p_c
}
}
void ScriptTextEditor::update_toggle_scripts_button() {
if (code_editor != NULL) {
code_editor->update_toggle_scripts_button();
}
}
void ScriptTextEditor::_update_connected_methods() {
TextEdit *text_edit = code_editor->get_text_edit();
text_edit->clear_info_icons();