From 3f3597ac0d7a7e3c7f3bb2f2eb8debc1ef2479bf Mon Sep 17 00:00:00 2001 From: Marius Hanl Date: Thu, 1 Dec 2022 12:54:10 +0800 Subject: [PATCH] Update project window title when a project setting was changed Co-authored-by: Haoyu Qiu (cherry picked from commit 9ea2ef7c44804e8eb27d33f8234311b1a9a56482) --- editor/editor_node.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index db6e27d0283..affeec8500e 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -5630,6 +5630,8 @@ void EditorNode::_project_settings_changed() { tree->set_debug_collision_contact_color(GLOBAL_GET("debug/shapes/collision/contact_color")); tree->set_debug_navigation_color(GLOBAL_GET("debug/shapes/navigation/geometry_color")); tree->set_debug_navigation_disabled_color(GLOBAL_GET("debug/shapes/navigation/disabled_geometry_color")); + + _update_title(); } void EditorNode::_feature_profile_changed() {