(tool)
| 202 | let previewWrapper = null; |
| 203 | |
| 204 | function setActiveTool(tool) { |
| 205 | activeTool = tool === "hand" ? "hand" : "select"; |
| 206 | if (toolSelectBtn) toolSelectBtn.setAttribute("aria-pressed", activeTool === "select" ? "true" : "false"); |
| 207 | if (toolHandBtn) toolHandBtn.setAttribute("aria-pressed", activeTool === "hand" ? "true" : "false"); |
| 208 | if (preview) preview.dataset.activeTool = activeTool; |
| 209 | try { updateCanvasCursorClass(); } catch (_) {} |
| 210 | } |
| 211 | |
| 212 | function setInspectorTab(tab) { |
| 213 | const t = tab === "selection" || tab === "code" ? tab : "project"; |
no test coverage detected