| 4691 | } |
| 4692 | |
| 4693 | void ScriptEditorPlugin::_focus_another_editor() { |
| 4694 | if (window_wrapper->get_window_enabled()) { |
| 4695 | ERR_FAIL_COND(last_editor.is_empty()); |
| 4696 | EditorInterface::get_singleton()->set_main_screen_editor(last_editor); |
| 4697 | } |
| 4698 | } |
| 4699 | |
| 4700 | void ScriptEditorPlugin::_save_last_editor(const String &p_editor) { |
| 4701 | if (p_editor != get_plugin_name()) { |
nothing calls this directly
no test coverage detected