From ebd76383f4f59ebc29b3b73bc1980932118ac386 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Wed, 22 May 2024 10:58:31 +0200 Subject: [PATCH] "Area fill" is changed to "Area fill threshold" --- src/libslic3r/PrintConfig.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 8d6e5ef603..3be7a795c9 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -3984,10 +3984,10 @@ void PrintConfigDef::init_sla_params() def->set_default_value(new ConfigOptionFloat(10.)); def = this->add("area_fill", coFloat); - def->label = L("Area fill"); + def->label = L("Area fill threshold"); def->tooltip = L("The value is expressed as a percentage of the bed area. If the area of a particular layer " - "is smaller than 'area_fill', then 'Below area fill' parameters are used to determine the " - "layer separation (tearing) procedure. Otherwise 'Above area fill' parameters are used."); + "is smaller than 'area_fill', then 'Below area fill threshold' parameters are used to determine the " + "layer separation (tearing) procedure. Otherwise 'Above area fill threshold' parameters are used."); def->sidetext = L("%"); def->min = 0; def->mode = comAdvanced;