mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-25 07:34:03 -06:00
Check min/max values for SpinCtrls in Settings Tabs
+ Set max value for "extruders_count" to 256
This commit is contained in:
parent
021688fe50
commit
131d2ace50
2 changed files with 20 additions and 11 deletions
|
@ -2208,6 +2208,7 @@ void TabPrinter::build_fff()
|
|||
def.label = L("Extruders");
|
||||
def.tooltip = L("Number of extruders of the printer.");
|
||||
def.min = 1;
|
||||
def.max = 256;
|
||||
def.mode = comExpert;
|
||||
Option option(def, "extruders_count");
|
||||
optgroup->append_single_option_line(option);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue