[RTL] Add support for shaping in background thread.
This commit is contained in:
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user