Skip to content

Commit

Permalink
fix: allows toolhead circle style controls invertion
Browse files Browse the repository at this point in the history
Signed-off-by: Pedro Lamas <[email protected]>
  • Loading branch information
pedrolamas committed Dec 6, 2023
1 parent a569cde commit 33d1146
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/settings/ToolheadSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

<v-divider />

<template v-if="toolheadControlStyle === 'cross'">
<template v-if="toolheadControlStyle === 'cross' || toolheadControlStyle === 'circle'">
<app-setting :title="$t('app.setting.label.invert_x_control')">
<v-switch
v-model="invertX"
Expand Down Expand Up @@ -64,7 +64,9 @@
</app-setting>

<v-divider />
</template>

<template v-if="toolheadControlStyle === 'cross'">
<app-setting :title="$t('app.setting.label.toolhead_move_distances')">
<v-combobox
ref="toolheadMoveDistances"
Expand Down

0 comments on commit 33d1146

Please sign in to comment.