From f2dd09aa125885d5c1d5d853eb10691d62821850 Mon Sep 17 00:00:00 2001 From: kijai <40791699+kijai@users.noreply.github.com> Date: Thu, 25 Apr 2024 19:36:37 +0300 Subject: [PATCH] Update spline_editor.js --- web/js/spline_editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/spline_editor.js b/web/js/spline_editor.js index 8245798..f1638b1 100644 --- a/web/js/spline_editor.js +++ b/web/js/spline_editor.js @@ -266,7 +266,7 @@ function createSplineEditor(context, reset=false) { .data(() => points) .left(d => d.x) .top(d => d.y) - .radius(8) + .radius(10) .cursor("move") .strokeStyle(function() { return i == this.index ? "#ff7f0e" : "#1f77b4"; }) .fillStyle(function() { return "rgba(100, 100, 100, 0.2)"; })