From a8d8ebe98ea474b8580a13ae142a721ea770d90f 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 43cb0f708d9..af9c16043c0 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -947,7 +947,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. @@ -1490,7 +1491,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));