From 96db349aa94ba756ea5a721559042e6ebbe2654c Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 18 Apr 2026 19:48:07 +0200 Subject: [PATCH] Reorder cases in selection.ts --- src/core/selection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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":