[RTL] Fix "img" tag not setting image size.

This commit is contained in:
bruvzg 2022-02-12 11:48:56 +02:00
parent d05f0f15f3
commit d7f6a4853a
No known key found for this signature in database
GPG Key ID: 7960FCF39844EC38

View File

@ -514,7 +514,7 @@ void RichTextLabel::_shape_line(ItemFrame *p_frame, int p_line, const Ref<Font>
} break;
case ITEM_IMAGE: {
ItemImage *img = (ItemImage *)it;
l.text_buf->add_object((uint64_t)it, img->image->get_size(), img->inline_align, 1);
l.text_buf->add_object((uint64_t)it, img->size, img->inline_align, 1);
text += String::chr(0xfffc);
l.char_count++;
remaining_characters--;