| 311 | } |
| 312 | |
| 313 | void WindowWrapper::set_window_title(const String &p_title) { |
| 314 | if (!is_window_available()) { |
| 315 | return; |
| 316 | } |
| 317 | window->set_title(p_title); |
| 318 | } |
| 319 | |
| 320 | void WindowWrapper::set_margins_enabled(bool p_enabled) { |
| 321 | if (!is_window_available()) { |
no test coverage detected