From 52ac3a84b91bd5a68948b31955484b1a6dde6e67 Mon Sep 17 00:00:00 2001 From: Vovodroid Date: Tue, 27 Feb 2024 16:35:54 +0200 Subject: [PATCH] Infill/Bottom ensuring --- src/libslic3r/PrintConfig.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index d90c7b422f6..a3019676812 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -953,7 +953,8 @@ void PrintConfigDef::init_fff_params() { "concentric", L("Concentric") }, { "hilbertcurve", L("Hilbert Curve") }, { "archimedeanchords", L("Archimedean Chords") }, - { "octagramspiral", L("Octagram Spiral") } + { "octagramspiral", L("Octagram Spiral") }, + { "ensuring", L("Ensuring") }, }); // solid_fill_pattern is an obsolete equivalent to top_fill_pattern/bottom_fill_pattern. @@ -1496,7 +1497,8 @@ void PrintConfigDef::init_fff_params() { "octagramspiral", L("Octagram Spiral")}, { "adaptivecubic", L("Adaptive Cubic")}, { "supportcubic", L("Support Cubic")}, - { "lightning", L("Lightning")} + { "lightning", L("Lightning")}, + { "ensuring", L("Ensuring") } }); def->set_default_value(new ConfigOptionEnum(ipStars));