diff --git a/scene/gui/rich_text_label.cpp b/scene/gui/rich_text_label.cpp index 7cde6bbdc50..dd275e346c8 100644 --- a/scene/gui/rich_text_label.cpp +++ b/scene/gui/rich_text_label.cpp @@ -1678,6 +1678,8 @@ void RichTextLabel::add_image(const Ref &p_image, const int p_width, co return; ERR_FAIL_COND(p_image.is_null()); + ERR_FAIL_COND(p_image->get_width() == 0); + ERR_FAIL_COND(p_image->get_height() == 0); ItemImage *item = memnew(ItemImage); item->image = p_image;