* Fixed whitespace calculation for non-wardrobe elements
* Fixed an issue with floats when expecting an int
This commit is contained in:
LoafyLemon 2023-07-27 00:54:03 +01:00
parent 027f237606
commit 43b1954263

View File

@ -25,10 +25,10 @@ init python:
size = surf.get_size() size = surf.get_size()
box = tuple(surf.get_bounding_rect()) box = tuple(surf.get_bounding_rect())
if size[0] != 1010: if "/clothes/" in path and size[0] != 1010:
ratio = size[0] / 1010 ratio = size[0] / 1010
box = tuple(v/ratio for v in box) box = tuple(v/ratio for v in box)
whitespace_dict[path] = box whitespace_dict[path] = tuple(map(int, box))
return box return box
def crop_image_zoom(path, xsize, ysize, grayscale=False): def crop_image_zoom(path, xsize, ysize, grayscale=False):