From c1bd94c2a4da71d7423bf434a9fe755bfd7bf25c Mon Sep 17 00:00:00 2001 From: Yuri Roubinsky Date: Tue, 15 Oct 2019 09:54:28 +0300 Subject: [PATCH] Fix incorrect coloring of in-editor documentation when theme changed --- editor/editor_help.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index 4a1e93eaad0..e4f64597b1a 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -1467,6 +1467,10 @@ void EditorHelp::_notification(int p_what) { _update_doc(); } break; + case NOTIFICATION_THEME_CHANGED: { + + _class_desc_resized(); + } break; default: break; } }