From 0bb08dd95566b25a9456978501aa6249ada1d824 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 15 Apr 2026 06:53:33 +0200 Subject: [PATCH] Update material inspector labels and values --- src/app/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index 327c0994..1769f9d8 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -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];