mirror of
https://github.com/godotengine/godot.git
synced 2024-12-09 10:09:20 +08:00
Merge pull request #47486 from bruvzg/rtl_effects
RichTextLabel: On custom effect change, parse bbcode only if it's enabled and not empty.
This commit is contained in:
commit
655a913e22
@ -3756,7 +3756,9 @@ void RichTextLabel::set_effects(const Vector<Variant> &effects) {
|
||||
custom_effects.push_back(effect);
|
||||
}
|
||||
|
||||
parse_bbcode(bbcode);
|
||||
if ((bbcode != "") && use_bbcode) {
|
||||
parse_bbcode(bbcode);
|
||||
}
|
||||
}
|
||||
|
||||
Vector<Variant> RichTextLabel::get_effects() {
|
||||
@ -3773,7 +3775,9 @@ void RichTextLabel::install_effect(const Variant effect) {
|
||||
|
||||
if (rteffect.is_valid()) {
|
||||
custom_effects.push_back(effect);
|
||||
parse_bbcode(bbcode);
|
||||
if ((bbcode != "") && use_bbcode) {
|
||||
parse_bbcode(bbcode);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user