diff options
author | Yuri Roubinsky <chaosus89@gmail.com> | 2021-04-11 13:29:35 +0300 |
---|---|---|
committer | Yuri Roubinsky <chaosus89@gmail.com> | 2021-04-11 13:29:35 +0300 |
commit | 9a5cce35e609adb42dce4a5217ac41cbb609441f (patch) | |
tree | 67f8451448c69649d95aadb979596848c44499bb | |
parent | 43f89e7c2ca080168ebf8adc1c23489491320429 (diff) |
Fix doc theme not changing when its hidding
-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 a747652a2f..3e3c7cfd3d 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; |