On 10/3/2024 6:51 AM, Canol Gökel wrote:
> But we noticed that the small image that we provided was being stretched
> vertically causing the aspect ratio to be wrong. Upon inspection the size
> of the image on the installer seems to be 55x58 not 55x55. Is the
> documentation wrong or is it maybe related to a settings on Windows?
Are you specifying multiple images? Checking the code, it appears there
are two different behaviors depending on whether you specify one image
or multiple images.
The initial size of the image control is 55x58, but if you have only one
image, the image control is resized to match your image size. So the
control is 55x55 with a 55x55 image, and there's no change in aspect ratio.
But if you have multiple images, the size of the image control doesn't
change; it stays 55x58. So if the chosen image is 55x55, it will be
stretched to 55x58.
It looks like the initial size of the control should be changed to 55x55
to match the documentation. But for now, you'll have to make your image
55x58. And if this is fixed, you'll have to change it back to 55x55.
-JR