Skip to content

Commit

Permalink
refactor: add ENABLE=1 to SET_PAUSE_AT_LAYER/NEXT_LAYER (#1293)
Browse files Browse the repository at this point in the history
  • Loading branch information
meteyou authored Mar 10, 2023
1 parent a3a71c8 commit 1a6969e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/panels/Status/PauseAtLayerDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -189,12 +189,12 @@ export default class StatusPanelPauseAtLayerDialog extends Mixins(BaseMixin) {
sendCommand() {
if (this.type === 'atLayer') {
this.doSend(`SET_PAUSE_AT_LAYER LAYER=${this.layer} MACRO=${this.call}`)
this.doSend(`SET_PAUSE_AT_LAYER ENABLE=1 LAYER=${this.layer} MACRO=${this.call}`)
this.hideDialog()
return
}
this.doSend(`SET_PAUSE_NEXT_LAYER MACRO=${this.call}`)
this.doSend(`SET_PAUSE_NEXT_LAYER ENABLE=1 MACRO=${this.call}`)
this.hideDialog()
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/panels/StatusPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export default class StatusPanel extends Mixins(BaseMixin) {
return ['paused', 'printing'].includes(this.printer_state)
},
click: this.btnExcludeObject,
click: this.btnPauseAtLayer,
},
{
text: this.$t('Panels.StatusPanel.ClearPrintStats'),
Expand Down

0 comments on commit 1a6969e

Please sign in to comment.