From cbeec663ab69efbc199e9f959a0408bc59ab24af Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 13 May 2026 13:25:06 +0200 Subject: [PATCH] auto-git: [change] src/viewport-three/viewport-host.ts --- src/viewport-three/viewport-host.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/viewport-three/viewport-host.ts b/src/viewport-three/viewport-host.ts index 2d000cc8..2f47c277 100644 --- a/src/viewport-three/viewport-host.ts +++ b/src/viewport-three/viewport-host.ts @@ -1489,6 +1489,17 @@ export class ViewportHost { this.addCameraRigRailPreviewPathIds(affectedIds, previousSelection); this.addCameraRigRailPreviewPathIds(affectedIds, selection); this.refreshSelectionPresentation(affectedIds); + + if ( + this.currentDocument !== null && + (affectedIds.pathIds.size > 0 || + previousSelection.kind === "pathPoint" || + previousSelection.kind === "pathPoints" || + selection.kind === "pathPoint" || + selection.kind === "pathPoints") + ) { + this.rebuildPathJunctionMarkers(this.currentDocument, selection); + } } updateDocument(document: SceneDocument) {