From cd5d9b2ffe84bce4bc69e4e70d26f874eb6ab360 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 18 Apr 2026 19:55:37 +0200 Subject: [PATCH] Include 'terrains' in selectionCanBeDuplicated --- src/app/App.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index 359e93fb..70194015 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -1690,6 +1690,7 @@ function isTextEntryTarget(target: EventTarget | null): boolean { function selectionCanBeDuplicated(selection: EditorSelection): boolean { switch (selection.kind) { case "brushes": + case "terrains": case "paths": case "entities": case "modelInstances":