Merge pull request #59114 from timothyqiu/svg-size
This commit is contained in:
commit
f35fb070dd
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ void ImageLoaderSVG::create_image_from_string(Ref<Image> p_image, String p_strin
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
float fw, fh;
|
float fw, fh;
|
||||||
picture->viewbox(nullptr, nullptr, &fw, &fh);
|
picture->size(&fw, &fh);
|
||||||
|
|
||||||
uint32_t width = MIN(fw * p_scale, 16 * 1024);
|
uint32_t width = MIN(fw * p_scale, 16 * 1024);
|
||||||
uint32_t height = MIN(fh * p_scale, 16 * 1024);
|
uint32_t height = MIN(fh * p_scale, 16 * 1024);
|
||||||
|
|
Loading…
Reference in a new issue