File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/components/widgets/toolhead Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 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 />
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 />
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 />
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 >
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 >
You can’t perform that action at this time.
0 commit comments