Skip to content

Commit

Permalink
fix: disable toolhead 3-dot menu during printing (fixes #812) (#814)
Browse files Browse the repository at this point in the history
  • Loading branch information
dw-0 authored May 16, 2022
1 parent 257c317 commit 9e64fb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/panels/ToolheadControlPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#buttons>
<v-menu left offset-y :close-on-content-click="false" class="pa-0">
<template #activator="{ on, attrs }">
<v-btn icon tile v-bind="attrs" v-on="on">
<v-btn icon tile v-bind="attrs" :disabled="['printing'].includes(printer_state)" v-on="on">
<v-icon>{{ mdiDotsVertical }}</v-icon>
</v-btn>
</template>
Expand Down

0 comments on commit 9e64fb1

Please sign in to comment.