Fix Label3D oversampling.

This commit is contained in:
bruvzg 2022-05-30 09:05:41 +03:00 committed by Relintai
parent d6a677f878
commit 3ef4f9128b

View File

@ -445,7 +445,7 @@ Size2 DynamicFontAtSize::get_char_tx_size(CharType p_char, CharType p_next, cons
ERR_FAIL_COND_V(!ch, Size2());
if (ch->found) {
return ch->rect_uv.size;
return ch->rect.size;
}
return Size2();
}