|
@@ -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);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|