Update material inspector labels and values

This commit is contained in:
2026-04-15 06:53:33 +02:00
parent 65a5aeb086
commit 0bb08dd955

View File

@@ -1941,10 +1941,10 @@ export function App({ store, initialStatusMessage }: AppProps) {
? selectedFaceMaterial
: null;
const materialInspectorActiveLabel =
materialInspectorScope === "brush" ? "Whole Solid" : "Active Face";
materialInspectorScope === "brush" ? "Active Scope" : "Active Face";
const materialInspectorActiveValue =
materialInspectorScope === "brush"
? "All Six Faces"
? "Whole Solid"
: selectedFaceId === null
? null
: BOX_FACE_LABELS[selectedFaceId];