From 5682f25d2b9bf2583f3b16885feb448fb03d0893 Mon Sep 17 00:00:00 2001
From: sanjayk03-dev
Date: Thu, 5 Dec 2024 15:50:13 +0530
Subject: [PATCH] Probing dialog
---
.../src/dialogs/ProbeDialog.svelte | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/src/svelte-components/src/dialogs/ProbeDialog.svelte b/src/svelte-components/src/dialogs/ProbeDialog.svelte
index f4979c8..1d77f2a 100644
--- a/src/svelte-components/src/dialogs/ProbeDialog.svelte
+++ b/src/svelte-components/src/dialogs/ProbeDialog.svelte
@@ -117,7 +117,9 @@
"Done",
].filter(isStep);
- await stepCompleted("CheckProbe", probeContacted);
+ if(probeType != "a"){
+ await stepCompleted("CheckProbe", probeContacted);
+ }
if (probeType === "xyz") {
await stepCompleted("BitDimensions", userAcknowledged);
@@ -367,6 +369,8 @@
{#if probeType === "xyz"}
Place the probe block face up, on the lower-left corner
of your workpiece.
+ {:else if probeType === "a"}
+ You are about to start the probing of rotary.
{:else}
Place the probe block face down, with the bit above the
recess.
@@ -401,7 +405,13 @@
above the probe block, and try again.
{:else}
- Don't forget to put away the probe!
+
+ {#if probeType === "a"}
+ Probing complete
+ {:else}
+ Don't forget to put away the probe!
+ {/if}
+