Skip to content

Commit

Permalink
motion qeue added to extruder object
Browse files Browse the repository at this point in the history
  • Loading branch information
HelgeKeck committed Jul 31, 2024
1 parent 2667ba2 commit d6eaa2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/widgets/toolhead/ExtruderSelection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
class="primary--text mr-3"
style="font-size: 14px"
>
{{ item.name }}
{{ item.name }}{{ item.extruder.motion_queue != item.key ? item.extruder.motion_queue : '' }}
</span>
<v-icon
small
Expand Down
1 change: 1 addition & 0 deletions src/store/printer/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export interface Extruder {
min_extrude_temp: number;
pressure_advance?: number;
smooth_time?: number;
motion_queue?: string | null;
}

export interface ExtruderConfig {
Expand Down

0 comments on commit d6eaa2e

Please sign in to comment.