summaryrefslogtreecommitdiff
path: root/scene
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2021-03-30 10:20:39 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2021-03-30 10:20:39 +0300
commit9f73abfa9f927ed6109b46991517f824b2ba318e (patch)
tree68323921195d169420152d2b48530acec5224695 /scene
parentdb31445b905d94f055ffd210aee6d93cc39b8c96 (diff)
RichTextLabel: On custom effect change, parse bbcode only if it's enabled and not empty.
Diffstat (limited to 'scene')
-rw-r--r--scene/gui/rich_text_label.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/scene/gui/rich_text_label.cpp b/scene/gui/rich_text_label.cpp
index 6ad66e4385..09f6578295 100644
--- a/scene/gui/rich_text_label.cpp
+++ b/scene/gui/rich_text_label.cpp
@@ -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);
+ }
}
}