From d5cc2ed50f16dbf936d1dcb96fbf6c6c794f6569 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 12 May 2026 22:36:02 +0200 Subject: [PATCH] Update path point instructions and fix button click handler binding --- src/app/App.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index 593995cd..911e0edf 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -21811,7 +21811,9 @@ export function App({
Edit authored point positions directly. Keep at least{" "} {MIN_SCENE_PATH_POINT_COUNT} points. Shift+W{" "} - appends a new point to the end of the selected path. + appends a new point to the end of the selected path. When + a point is selected, Shift+D appends one and + starts grab mode.
{selectedPathPointIndex === null ? null : (
@@ -21829,7 +21831,7 @@ export function App({ className="toolbar__button" type="button" data-testid="add-path-point" - onClick={handleAddPathPoint} + onClick={() => handleAddPathPoint()} > Add Point