[macOS] Fix editor loading crash on native menu click.

This commit is contained in:
Pāvels Nadtočajevs
2025-03-10 08:41:17 +02:00
parent cae3d722a3
commit 6d698cf185

View File

@ -399,6 +399,9 @@ void EditorNode::_update_vsync_mode() {
}
void EditorNode::_update_from_settings() {
if (!is_inside_tree()) {
return;
}
_update_title();
int current_filter = GLOBAL_GET("rendering/textures/canvas_textures/default_texture_filter");