فهرست منبع

Merge pull request #63407 from RedMser/install-effect-error

Add error for invalid RichTextLabel.install_effect
Rémi Verschelde 3 سال پیش
والد
کامیت
96401b48ec
1فایلهای تغییر یافته به همراه4 افزوده شده و 5 حذف شده
  1. 4 5
      scene/gui/rich_text_label.cpp

+ 4 - 5
scene/gui/rich_text_label.cpp

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