diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-05-24 12:21:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-24 12:21:55 +0200 |
commit | 08491ec5432577dffcaccda161df4cca8c141c30 (patch) | |
tree | 56e704651db45bee8cdf47bbb01c2638770262a9 /editor | |
parent | 7cb23e4306c589bc511d57a49ab43dcec009d796 (diff) | |
parent | 9a5cce35e609adb42dce4a5217ac41cbb609441f (diff) |
Merge pull request #47791 from Chaosus/fix_doc_theme
Fix doc theme not changing when its changed via settings
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_help.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index 3f94f43710..9361981db6 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -1593,7 +1593,7 @@ void EditorHelp::_notification(int p_what) { _update_doc(); } break; case NOTIFICATION_THEME_CHANGED: { - if (is_visible_in_tree()) { + if (is_inside_tree()) { _class_desc_resized(); } } break; |