Skip to content

Commit

Permalink
Update ToolheadControlPanel.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
HelgeKeck committed Sep 20, 2023
1 parent 298b12d commit bfd4225
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/components/panels/ToolheadControlPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<panel
v-if="klipperReadyForGui"
:icon="mdiGamepad"
:title="$t('Panels.ToolheadControlPanel.Headline')"
:title="$t(headline)"
:collapsible="true"
card-class="toolhead-control-panel">
<!-- PANEL-HEADER 3-DOT-MENU -->
Expand Down Expand Up @@ -87,25 +87,19 @@
<idex-control v-if="isIdex" class="py-0 pt-3" />
<!-- MOVE TO CONTROL -->
<move-to-control class="py-0 pt-3" />
<move-to-control class="py-0 pt-3" />
<!-- AXIS CONTROL -->
<v-container v-if="axisControlVisible">
<component :is="`${controlStyle}-control`" />
<component :is="`${controlStyle}-control`" />
</v-container>
<!-- Z-OFFSET CONTROL -->
<v-divider :class="{ 'mt-3': !axisControlVisible }" />
<v-divider :class="{ 'mt-3': !axisControlVisible }" />
<v-container>
<zoffset-control />
<zoffset-control />
</v-container>
<!-- SPEED FACTOR -->
<v-divider />
<v-divider />
<v-container>
<tool-slider
:label="$t('Panels.ToolheadControlPanel.SpeedFactor')"
:label="$t('Panels.ToolheadControlPanel.SpeedFactor')"
:icon="mdiSpeedometer"
:target="speedFactor"
Expand Down

0 comments on commit bfd4225

Please sign in to comment.