Skip to content

Commit 30905b2

Browse files
authored
fix: toolhead position controls enabled on pause (#1533)
Signed-off-by: Pedro Lamas <pedrolamas@gmail.com>
1 parent ab16ea2 commit 30905b2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/components/widgets/toolhead/ToolheadPosition.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
small
2424
type="number"
2525
:disabled="!klippyReady || (!xHomed && !xForceMove)"
26-
:readonly="printerBusy"
26+
:readonly="printerPrinting"
2727
:value="(useGcodeCoords) ? gcodePosition[0].toFixed(2) : toolheadPosition[0].toFixed(2)"
2828
@submit="moveAxisTo('X', +$event)"
2929
/>
@@ -46,7 +46,7 @@
4646
small
4747
type="number"
4848
:disabled="!klippyReady || (!yHomed && !yForceMove)"
49-
:readonly="printerBusy"
49+
:readonly="printerPrinting"
5050
:value="(useGcodeCoords) ? gcodePosition[1].toFixed(2) : toolheadPosition[1].toFixed(2)"
5151
@submit="moveAxisTo('Y', +$event)"
5252
/>
@@ -69,7 +69,7 @@
6969
small
7070
type="number"
7171
:disabled="!klippyReady || (!zHomed && !zForceMove)"
72-
:readonly="printerBusy"
72+
:readonly="printerPrinting"
7373
:value="(useGcodeCoords) ? gcodePosition[2].toFixed(3) : toolheadPosition[2].toFixed(3)"
7474
@submit="moveAxisTo('Z', +$event)"
7575
/>
@@ -89,7 +89,7 @@
8989
<app-btn
9090
v-bind="attrs"
9191
class="positioning-toggle-button"
92-
:disabled="!klippyReady || printerBusy"
92+
:disabled="!klippyReady || printerPrinting"
9393
v-on="on"
9494
>
9595
<v-icon small>
@@ -104,7 +104,7 @@
104104
<app-btn
105105
v-bind="attrs"
106106
class="positioning-toggle-button"
107-
:disabled="!klippyReady || printerBusy"
107+
:disabled="!klippyReady || printerPrinting"
108108
v-on="on"
109109
>
110110
<v-icon small>

0 commit comments

Comments
 (0)