From 8e6cb4014003009e8dab7afa1e73d07048cd085c Mon Sep 17 00:00:00 2001 From: Florens Wasserfall Date: Wed, 19 Apr 2017 10:10:33 +0200 Subject: [PATCH] Add category to adaptive slicing config options --- xs/src/libslic3r/PrintConfig.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xs/src/libslic3r/PrintConfig.cpp b/xs/src/libslic3r/PrintConfig.cpp index 3e73e4829..56485977e 100644 --- a/xs/src/libslic3r/PrintConfig.cpp +++ b/xs/src/libslic3r/PrintConfig.cpp @@ -25,12 +25,14 @@ PrintConfigDef::PrintConfigDef() def = this->add("adaptive_slicing", coBool); 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->cli = "adaptive-slicing!"; def->default_value = new ConfigOptionBool(false); def = this->add("adaptive_slicing_quality", coPercent); 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->sidetext = "%"; def->cli = "adaptive_slicing_quality=f";