diff --git a/src/svelte-components/src/components/ConfigTemplatedInput.svelte b/src/svelte-components/src/components/ConfigTemplatedInput.svelte index b0f7d78..8402e3b 100644 --- a/src/svelte-components/src/components/ConfigTemplatedInput.svelte +++ b/src/svelte-components/src/components/ConfigTemplatedInput.svelte @@ -25,7 +25,7 @@ const namesByKey = { "units":"units", "probing-prompts": "Show safety prompts", - "easy-adapter": "Enable/Disable Easy Adapter", + "easy-adapter": "Easy Adapter On/Off", "probe-xdim": "Probe block width", "probe-ydim": "Probe block length", "probe-zdim": "Probe block height", diff --git a/src/svelte-components/src/dialogs/EasyAdapterDialog.svelte b/src/svelte-components/src/dialogs/EasyAdapterDialog.svelte index 0169240..8b9bcce 100644 --- a/src/svelte-components/src/dialogs/EasyAdapterDialog.svelte +++ b/src/svelte-components/src/dialogs/EasyAdapterDialog.svelte @@ -34,5 +34,9 @@ :global(.easy-adapter-dialog .mdc-dialog__surface) { z-index: 10002 !important; + width: 50vw !important; + height: 35vh !important; + max-width: 50vw !important; + max-height: 35vh !important; } diff --git a/src/svelte-components/src/lib/ConfigStore.ts b/src/svelte-components/src/lib/ConfigStore.ts index fd60bf6..ed3234d 100644 --- a/src/svelte-components/src/lib/ConfigStore.ts +++ b/src/svelte-components/src/lib/ConfigStore.ts @@ -34,7 +34,7 @@ export function handleConfigUpdate(config: Record) { } finally { easyAdapterTimer = null; } - }, 5000); + }, 90000); } catch (error) { console.error("Failed to show EasyAdapter dialog:", error); }