diff --git a/src/core/selection.ts b/src/core/selection.ts index 3ac38bff..f93a518b 100644 --- a/src/core/selection.ts +++ b/src/core/selection.ts @@ -100,10 +100,10 @@ export function areEditorSelectionsEqual(left: EditorSelection, right: EditorSel return right.kind === "brushEdge" && left.brushId === right.brushId && left.edgeId === right.edgeId; case "brushVertex": return right.kind === "brushVertex" && left.brushId === right.brushId && left.vertexId === right.vertexId; - case "terrains": case "pathPoint": return right.kind === "pathPoint" && left.pathId === right.pathId && left.pointId === right.pointId; case "brushes": + case "terrains": case "paths": case "entities": case "modelInstances":