From 2af75a066f789690f2e62fac2d6eec9241081953 Mon Sep 17 00:00:00 2001 From: bruvzg <7645683+bruvzg@users.noreply.github.com> Date: Thu, 23 Feb 2023 11:42:58 +0200 Subject: [PATCH] [Editor] Enable multithread processing for the editor log. --- editor/editor_log.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/editor/editor_log.cpp b/editor/editor_log.cpp index 7431166291..b37debbd70 100644 --- a/editor/editor_log.cpp +++ b/editor/editor_log.cpp @@ -389,6 +389,7 @@ EditorLog::EditorLog() { // Log - Rich Text Label. log = memnew(RichTextLabel); + log->set_threaded(true); log->set_use_bbcode(true); log->set_scroll_follow(true); log->set_selection_enabled(true);