From c0baec410b0617ddb36c278230f3b60da1444af6 Mon Sep 17 00:00:00 2001 From: Marius Hanl Date: Wed, 21 Dec 2022 01:52:24 +0100 Subject: Queue inspector tree update when changing the theme. --- editor/editor_inspector.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index 2df14aef6c..5bf45687ab 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -3867,6 +3867,10 @@ void EditorInspector::_notification(int p_what) { _update_inspector_bg(); } break; + case NOTIFICATION_THEME_CHANGED: { + update_tree(); + } break; + case NOTIFICATION_ENTER_TREE: { if (!sub_inspector) { get_tree()->connect("node_removed", callable_mp(this, &EditorInspector::_node_removed)); -- cgit v1.2.3