Update status message to include terrain selection

This commit is contained in:
2026-04-18 19:49:01 +02:00
parent 0f3280e61c
commit 2e925450b4

View File

@@ -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}.`