diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-05-18 10:17:55 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-05-19 09:34:44 +0300 |
commit | cfcdfc38e275d8766e69621a001422030e515173 (patch) | |
tree | 3071402a730d6459a3fad9b575c5fb0264f5a939 /editor/editor_about.cpp | |
parent | 5631b59e218f4883442382c097eed10ed76b3c8d (diff) | |
download | redot-engine-cfcdfc38e275d8766e69621a001422030e515173.tar.gz |
[RTL] Add support for shaping in background thread.
Diffstat (limited to 'editor/editor_about.cpp')
-rw-r--r-- | editor/editor_about.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp index cd5a4f16e4..8e2aa3b35c 100644 --- a/editor/editor_about.cpp +++ b/editor/editor_about.cpp @@ -196,6 +196,7 @@ EditorAbout::EditorAbout() { // License _license_text = memnew(RichTextLabel); + _license_text->set_threaded(true); _license_text->set_name(TTR("License")); _license_text->set_h_size_flags(Control::SIZE_EXPAND_FILL); _license_text->set_v_size_flags(Control::SIZE_EXPAND_FILL); @@ -272,6 +273,7 @@ EditorAbout::EditorAbout() { tpl_hbc->add_child(_tpl_tree); _tpl_text = memnew(RichTextLabel); + _tpl_text->set_threaded(true); _tpl_text->set_h_size_flags(Control::SIZE_EXPAND_FILL); _tpl_text->set_v_size_flags(Control::SIZE_EXPAND_FILL); tpl_hbc->add_child(_tpl_text); |