Skip to content

Commit b2b83e9

Browse files
committed
fix: revert position back to toolhead position
1 parent 36854c4 commit b2b83e9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/widgets/ToolheadPositionWidget.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
<v-col cols="12" lg="4" class="d-flex flex-row justify-start justify-lg-space-around flex-lg-column align-center">
55
<div class="text-subtitle-1 grey--text text--darken-1 mx-2">X</div>
66
<div class="grey--text focus--text">
7-
{{ gcodePosition[0].toFixed(2) }}
7+
{{ toolheadPosition[0].toFixed(2) }}
88
</div>
99
</v-col>
1010
<v-col cols="12" lg="4" class="d-flex flex-row justify-start justify-lg-space-around flex-lg-column align-center">
1111
<div class="text-subtitle-1 grey--text text--darken-1 mx-2">Y</div>
1212
<div class="grey--text focus--text">
13-
{{ gcodePosition[1].toFixed(2) }}
13+
{{ toolheadPosition[1].toFixed(2) }}
1414
</div>
1515
</v-col>
1616
<v-col cols="12" lg="4" class="d-flex flex-row justify-start justify-lg-space-around flex-lg-column align-center">
1717
<div class="text-subtitle-1 grey--text text--darken-1 mx-2">Z</div>
1818
<div class="grey--text focus--text">
19-
{{ gcodePosition[2].toFixed(2) }}
19+
{{ toolheadPosition[2].toFixed(2) }}
2020
</div>
2121
</v-col>
2222
</v-row>

0 commit comments

Comments
 (0)