Fix determination of SVG canvas size
This commit is contained in:
parent
1164d083d2
commit
1049e75b89
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;
|
||||
}
|
||||
float fw, fh;
|
||||
picture->viewbox(nullptr, nullptr, &fw, &fh);
|
||||
picture->size(&fw, &fh);
|
||||
|
||||
uint32_t width = MIN(fw * p_scale, 16 * 1024);
|
||||
uint32_t height = MIN(fh * p_scale, 16 * 1024);
|
||||
|
|
Loading…
Reference in a new issue