From 68807ca3eee10f0701870d39c266e80c20ad0d3f Mon Sep 17 00:00:00 2001 From: Arthur Date: Wed, 6 Nov 2024 17:58:36 +0800 Subject: [PATCH] ENH: correct tooltip of distance to rod jira: none Change-Id: Iad8fc7168e1f19883ab8fe793e8025f1b81da205 --- 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 4d7c6f776..6914c474d 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -1354,7 +1354,7 @@ void PrintConfigDef::init_fff_params() def = this->add("extruder_clearance_dist_to_rod", coFloat); def->label = L("Distance to rod"); - def->tooltip = L("Clearance radius around extruder. Used for collision avoidance in by-object printing."); + def->tooltip = L("Horizontal distance of the nozzle tip to the rod's farther edge. Used for collision avoidance in by-object printing."); def->sidetext = L("mm"); def->min = 0; def->mode = comAdvanced;