| 1268 | /////// |
| 1269 | |
| 1270 | void GameViewPluginBase::selected_notify() { |
| 1271 | if (_is_window_wrapper_enabled()) { |
| 1272 | #ifdef ANDROID_ENABLED |
| 1273 | notify_main_screen_changed(get_plugin_name()); |
| 1274 | #else |
| 1275 | window_wrapper->grab_window_focus(); |
| 1276 | #endif // ANDROID_ENABLED |
| 1277 | _focus_another_editor(); |
| 1278 | } |
| 1279 | } |
| 1280 | |
| 1281 | #ifndef ANDROID_ENABLED |
| 1282 | void GameViewPluginBase::make_visible(bool p_visible) { |
no test coverage detected