mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-03 01:40:44 +08:00
Add category to adaptive slicing config options
This commit is contained in:
parent
57826c9262
commit
8e6cb40140
@ -25,12 +25,14 @@ PrintConfigDef::PrintConfigDef()
|
|||||||
|
|
||||||
def = this->add("adaptive_slicing", coBool);
|
def = this->add("adaptive_slicing", coBool);
|
||||||
def->label = "Use adaptive slicing";
|
def->label = "Use adaptive slicing";
|
||||||
|
def->category = "Layers and Perimeters";
|
||||||
def->tooltip = "Automatically determine layer heights by the objects topology instead of using the static value.";
|
def->tooltip = "Automatically determine layer heights by the objects topology instead of using the static value.";
|
||||||
def->cli = "adaptive-slicing!";
|
def->cli = "adaptive-slicing!";
|
||||||
def->default_value = new ConfigOptionBool(false);
|
def->default_value = new ConfigOptionBool(false);
|
||||||
|
|
||||||
def = this->add("adaptive_slicing_quality", coPercent);
|
def = this->add("adaptive_slicing_quality", coPercent);
|
||||||
def->label = "Adaptive quality";
|
def->label = "Adaptive quality";
|
||||||
|
def->category = "Layers and Perimeters";
|
||||||
def->tooltip = "Controls the quality / printing time tradeoff for adaptive layer generation. 0 -> fastest printing with max layer height, 100 -> highest quality, min layer height";
|
def->tooltip = "Controls the quality / printing time tradeoff for adaptive layer generation. 0 -> fastest printing with max layer height, 100 -> highest quality, min layer height";
|
||||||
def->sidetext = "%";
|
def->sidetext = "%";
|
||||||
def->cli = "adaptive_slicing_quality=f";
|
def->cli = "adaptive_slicing_quality=f";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user