Merge pull request #63407 from RedMser/install-effect-error
Add error for invalid RichTextLabel.install_effect
This commit is contained in:
commit
96401b48ec
1 changed files with 4 additions and 5 deletions
|
@ -4883,11 +4883,10 @@ void RichTextLabel::install_effect(const Variant effect) {
|
|||
Ref<RichTextEffect> rteffect;
|
||||
rteffect = effect;
|
||||
|
||||
if (rteffect.is_valid()) {
|
||||
custom_effects.push_back(effect);
|
||||
if ((!text.is_empty()) && use_bbcode) {
|
||||
parse_bbcode(text);
|
||||
}
|
||||
ERR_FAIL_COND_MSG(rteffect.is_null(), "Invalid RichTextEffect resource.");
|
||||
custom_effects.push_back(effect);
|
||||
if ((!text.is_empty()) && use_bbcode) {
|
||||
parse_bbcode(text);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue