Correctly calculate new thickness

这个提交包含在:
Nathan Mannall
2025-02-14 11:54:24 +00:00
父节点 23d5735c8a
当前提交 b0ecf50688

查看文件

@@ -254,9 +254,10 @@ class MainGridUserInput(UserInput[GridType]):
return False, start, thickness
if start < 0:
thickness += start
start = 0
if end > grid_size:
thickness = grid_size - start
thickness -= end - grid_size
return True, start, thickness