Compare commits

..

No commits in common. "2117a40ceca4d33854fa5d880164a79ce76187c0" and "037efe770f2ec4716201aaae147d5c679588f826" have entirely different histories.

View File

@ -716,7 +716,7 @@ class SplitImageToTileList(IO.ComfyNode):
def get_grid_coords(width, height, tile_width, tile_height, overlap):
coords = []
stride_x = round(max(tile_width * 0.25, tile_width - overlap))
stride_y = round(max(tile_height * 0.25, tile_height - overlap))
stride_y = round(max(tile_width * 0.25, tile_height - overlap))
y = 0
while y < height: