Merge pull request #39485 from theoway/append_bbcode_animation_bug

Fixes the stopping of animation effects in bbcode text after appending
This commit is contained in:
Rémi Verschelde 2020-06-15 11:03:46 +02:00 committed by GitHub
commit c6f48f5bfc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

View File

@ -2412,6 +2412,17 @@ Error RichTextLabel::append_bbcode(const String &p_bbcode) {
}
}
Vector<ItemFX *> fx_items;
for (List<Item *>::Element *E = main->subitems.front(); E; E = E->next()) {
Item *subitem = static_cast<Item *>(E->get());
_fetch_item_fx_stack(subitem, fx_items);
if (fx_items.size()) {
set_process_internal(true);
break;
}
}
return OK;
}