summaryrefslogtreecommitdiffstats
path: root/editor/editor_help.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/editor_help.cpp')
-rw-r--r--editor/editor_help.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp
index 56bada0c32..cc63618f1e 100644
--- a/editor/editor_help.cpp
+++ b/editor/editor_help.cpp
@@ -2818,8 +2818,13 @@ void EditorHelp::_notification(int p_what) {
_class_desc_resized(false);
} break;
- case NOTIFICATION_READY:
case EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED: {
+ if (!EditorSettings::get_singleton()->check_changed_settings_in_group("text_editor/help")) {
+ break;
+ }
+ [[fallthrough]];
+ }
+ case NOTIFICATION_READY: {
_wait_for_thread();
_update_doc();
} break;