From 7afb9dd27591345b80565e8a694e452f8a82c339 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20J=2E=20Est=C3=A9banez?= Date: Fri, 23 Jun 2023 16:38:00 +0200 Subject: [PATCH] Disable doc cache temporarily for pre-RC stabilization --- editor/editor_help.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index 991807ccbb8..681da0461f4 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -2309,6 +2309,9 @@ void EditorHelp::_gen_doc_thread(void *p_udata) { static bool doc_gen_use_threads = true; void EditorHelp::generate_doc(bool p_use_cache) { + // Temporarily disable use of cache for pre-RC stabilization. + p_use_cache = false; + OS::get_singleton()->benchmark_begin_measure("EditorHelp::generate_doc"); if (doc_gen_use_threads) { // In case not the first attempt.