From 8f66b33c3ebf31eced5bb5e5bb7c287b0ffce7ef Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Mon, 19 Sep 2016 19:44:54 -0500 Subject: [PATCH] EXPERIMENTAL: Added all support infill types to the support dropdown. --- xs/src/libslic3r/PrintConfig.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/xs/src/libslic3r/PrintConfig.cpp b/xs/src/libslic3r/PrintConfig.cpp index 461981cda..520e82e6a 100644 --- a/xs/src/libslic3r/PrintConfig.cpp +++ b/xs/src/libslic3r/PrintConfig.cpp @@ -1144,11 +1144,23 @@ PrintConfigDef::PrintConfigDef() def->enum_values.push_back("rectilinear"); def->enum_values.push_back("rectilinear-grid"); def->enum_values.push_back("honeycomb"); + def->enum_values.push_back("3dhoneycomb"); def->enum_values.push_back("pillars"); + def->enum_values.push_back("line"); + def->enum_values.push_back("concentric"); + def->enum_values.push_back("hilbertcurve"); + def->enum_values.push_back("archimedeanchords"); + def->enum_values.push_back("octagramspiral"); def->enum_labels.push_back("rectilinear"); def->enum_labels.push_back("rectilinear grid"); def->enum_labels.push_back("honeycomb"); + def->enum_labels.push_back("3D Honeycomb"); def->enum_labels.push_back("pillars"); + def->enum_labels.push_back("line"); + def->enum_labels.push_back("Concentric"); + def->enum_labels.push_back("Hilbert Curve"); + def->enum_labels.push_back("Archimedean Chords"); + def->enum_labels.push_back("Octagram Spiral"); def->default_value = new ConfigOptionEnum(smpPillars); def = this->add("support_material_spacing", coFloat);