Skip to content

Commit

Permalink
fix: revert position back to toolhead position
Browse files Browse the repository at this point in the history
  • Loading branch information
cadriel committed Dec 26, 2020
1 parent 36854c4 commit b2b83e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/widgets/ToolheadPositionWidget.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
<v-col cols="12" lg="4" class="d-flex flex-row justify-start justify-lg-space-around flex-lg-column align-center">
<div class="text-subtitle-1 grey--text text--darken-1 mx-2">X</div>
<div class="grey--text focus--text">
{{ gcodePosition[0].toFixed(2) }}
{{ toolheadPosition[0].toFixed(2) }}
</div>
</v-col>
<v-col cols="12" lg="4" class="d-flex flex-row justify-start justify-lg-space-around flex-lg-column align-center">
<div class="text-subtitle-1 grey--text text--darken-1 mx-2">Y</div>
<div class="grey--text focus--text">
{{ gcodePosition[1].toFixed(2) }}
{{ toolheadPosition[1].toFixed(2) }}
</div>
</v-col>
<v-col cols="12" lg="4" class="d-flex flex-row justify-start justify-lg-space-around flex-lg-column align-center">
<div class="text-subtitle-1 grey--text text--darken-1 mx-2">Z</div>
<div class="grey--text focus--text">
{{ gcodePosition[2].toFixed(2) }}
{{ toolheadPosition[2].toFixed(2) }}
</div>
</v-col>
</v-row>
Expand Down

0 comments on commit b2b83e9

Please sign in to comment.