From e62f0140494f25d533ebe4e7e2adec83c9f5b51f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Hejl?= Date: Tue, 15 Dec 2020 14:03:52 +0100 Subject: [PATCH] Corrected side text for avoid crossing perimeters max detour --- src/libslic3r/PrintConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index a85348ac7..ada089187 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -190,7 +190,7 @@ void PrintConfigDef::init_fff_params() def->tooltip = L("The maximum detour length for avoid crossing perimeters. " "If the detour is longer than this value, avoid crossing perimeters is not applied for this travel path. " "Detour length could be specified either as an absolute value or as percentage (for example 50%) of a direct travel path."); - def->sidetext = L("mm (zero to disable)"); + def->sidetext = L("mm or % (zero to disable)"); def->min = 0; def->mode = comExpert; def->set_default_value(new ConfigOptionFloatOrPercent(0., false));