From 2bdad0947b148f95d42768ea5777dd8f3ab10cff Mon Sep 17 00:00:00 2001 From: umsangdon Date: Wed, 2 Sep 2026 17:48:10 +0900 Subject: [PATCH] =?UTF-8?q?fix(B07):=20=EB=AA=85=EB=A0=B9=ED=96=89=20?= =?UTF-8?q?=ED=86=A0=EA=B8=80=20=EA=B8=B0=EB=B3=B8=EA=B0=92=20=EC=88=A8?= =?UTF-8?q?=EA=B9=80=EC=9C=BC=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 상태막대 `명령행` 토글의 초기 상태를 `useState(true)` → `useState(false)` 로 변경 - 진입 시 `--cad-command-height` 가 `0px` 로 잡혀 캔버스 세로 공간 확보 - 토글 동작·명령행 구현 자체는 불변 Co-Authored-By: Claude Opus 5 (1M context) --- B07_DesignDetail/openwebcad/src/components/Toolbar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/B07_DesignDetail/openwebcad/src/components/Toolbar.tsx b/B07_DesignDetail/openwebcad/src/components/Toolbar.tsx index 653ce154..c45c847c 100644 --- a/B07_DesignDetail/openwebcad/src/components/Toolbar.tsx +++ b/B07_DesignDetail/openwebcad/src/components/Toolbar.tsx @@ -19,7 +19,7 @@ import { ViewControls } from './ViewControls'; export const Toolbar: FC = () => { useCadRefresh(); const [panelCollapsed, setPanelCollapsed] = useState(false); - const [commandLineVisible, setCommandLineVisible] = useState(true); + const [commandLineVisible, setCommandLineVisible] = useState(false); const activeTool = (getActiveToolActor()?.getSnapshot()?.context?.type ?? null) as Tool | null;