Skip to content

Commit d0fef33

Browse files
Fix a curve tool preview bug where the preview was changing when the cursor was moving, but the end point was staying the same
Fix by @Variable-ind
1 parent 66b3aa9 commit d0fef33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tools/DesignTools/CurveTool.gd

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ func _clear() -> void:
213213

214214
## Get the [member _curve]'s baked points, and draw lines between them using [method _fill_gap].
215215
func _bezier() -> Array[Vector2i]:
216-
var last_pixel := Global.canvas.current_pixel
216+
var last_pixel := Global.canvas.current_pixel.floor()
217217
if Global.mirror_view:
218218
# Mirror the last point of the curve
219219
last_pixel.x = (Global.current_project.size.x - 1) - last_pixel.x

0 commit comments

Comments
 (0)