From 2e925450b4c96cd79f8d7c4dbdb120c733ea3fb2 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 18 Apr 2026 19:49:01 +0200 Subject: [PATCH] Update status message to include terrain selection --- src/app/App.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index f023b3e9..8ae7703b 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -6456,6 +6456,13 @@ export function App({ store, initialStatusMessage }: AppProps) { } on ${getBrushLabelById(selection.brushId, brushList)} from the ${source}${suffix}.` ); break; + case "terrains": + setStatusMessage( + selection.ids.length === 1 + ? `Selected ${getTerrainLabelById(selection.ids[0], terrainList)} from the ${source}${suffix}.` + : `Selected ${selection.ids.length} terrains from the ${source}${suffix}.` + ); + break; case "paths": setStatusMessage( `Selected ${getPathLabelById(selection.ids[0], pathList)} from the ${source}${suffix}.`