| 865 | } |
| 866 | |
| 867 | void GameView::get_window_layout(Ref<ConfigFile> p_layout) { |
| 868 | if (window_wrapper->get_window_enabled()) { |
| 869 | _update_floating_window_settings(); |
| 870 | } |
| 871 | |
| 872 | p_layout->set_value("GameView", "floating_window_rect", floating_window_rect); |
| 873 | p_layout->set_value("GameView", "floating_window_screen", floating_window_screen); |
| 874 | } |
| 875 | |
| 876 | void GameView::_update_floating_window_settings() { |
| 877 | if (window_wrapper->get_window_enabled()) { |
no test coverage detected