1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Fix doc theme not changing when its hidding

This commit is contained in:
Yuri Roubinsky
2021-04-11 13:29:35 +03:00
parent 43f89e7c2c
commit 9a5cce35e6

View File

@@ -1593,7 +1593,7 @@ void EditorHelp::_notification(int p_what) {
_update_doc(); _update_doc();
} break; } break;
case NOTIFICATION_THEME_CHANGED: { case NOTIFICATION_THEME_CHANGED: {
if (is_visible_in_tree()) { if (is_inside_tree()) {
_class_desc_resized(); _class_desc_resized();
} }
} break; } break;