Skip to content

Commit

Permalink
Fixed minimum for extrusion factor inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
chrishamm committed Oct 29, 2024
1 parent 2bef836 commit 70cfc17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/panels/ExtrusionFactorsPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</div>

<percentage-input :value="getExtrusionFactor(extruder)" @input="setExtrusionFactor(index, $event)"
:max="getMax(extruder)" :step="1" :disabled="uiFrozen" />
:min="0" :max="getMax(extruder)" :step="1" :disabled="uiFrozen" />
</div>
</template>
</v-card-text>
Expand Down

0 comments on commit 70cfc17

Please sign in to comment.