Cleanup unused engine code

This commit is contained in:
Tomasz Chabora 2020-12-08 22:51:48 +01:00
parent 90bdba576a
commit 2c048ea164
56 changed files with 4 additions and 615 deletions

View file

@ -1641,17 +1641,6 @@ void ScriptEditor::get_breakpoints(List<String> *p_breakpoints) {
}
}
void ScriptEditor::ensure_focus_current() {
if (!is_inside_tree()) {
return;
}
ScriptEditorBase *current = _get_current_editor();
if (current) {
current->ensure_focus();
}
}
void ScriptEditor::_members_overview_selected(int p_idx) {
ScriptEditorBase *se = _get_current_editor();
if (!se) {