From 62ccd979c6f442a974d512fa17e15beaad01a70a Mon Sep 17 00:00:00 2001 From: Ian Bassi Date: Mon, 4 May 2026 12:37:54 -0300 Subject: [PATCH] EFC Density description (#13476) --- src/libslic3r/PrintConfig.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index b812515d89..f2aad27895 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -696,11 +696,11 @@ void PrintConfigDef::init_common_params() def->set_default_value(new ConfigOptionInt(1)); def = this->add("elefant_foot_layers_density", coPercent); - def->label = L("Elefant foot layers density"); + def->label = L("Elephant foot layers density"); def->category = L("Quality"); - def->tooltip = L("Density of internal solid infill for elefant foot layers compensation. " - "The initial value for the second layer is set. " - "Subsequent layers become linearly denser by the height specified in elefant_foot_compensation_layers. "); + def->tooltip = L("Density of internal solid infill for Elephant foot layers compensation.\n" + "The initial value for the second layer is set.\n" + "Subsequent layers become linearly denser by the height specified in elefant_foot_compensation_layers."); def->sidetext = "%"; def->min = 50; def->max = 100;