From fcf65223e14aa3c935e0388a978859c2874c7c2b Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Thu, 14 Aug 2014 21:50:57 +0200 Subject: [PATCH] Make tooltip for toolchange_gcode more precise --- xs/src/libslic3r/PrintConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xs/src/libslic3r/PrintConfig.cpp b/xs/src/libslic3r/PrintConfig.cpp index 2e9d8a6bf4..3486afc223 100644 --- a/xs/src/libslic3r/PrintConfig.cpp +++ b/xs/src/libslic3r/PrintConfig.cpp @@ -879,7 +879,7 @@ PrintConfigDef::build_def() { Options["toolchange_gcode"].type = coString; Options["toolchange_gcode"].label = "Tool change G-code"; - Options["toolchange_gcode"].tooltip = "This custom code is inserted at every extruder change. Note that you can use placeholder variables for all Slic3r settings as well as [previous_extruder] and [next_extruder]."; + Options["toolchange_gcode"].tooltip = "This custom code is inserted right before every extruder change. Note that you can use placeholder variables for all Slic3r settings as well as [previous_extruder] and [next_extruder]."; Options["toolchange_gcode"].cli = "toolchange-gcode=s"; Options["toolchange_gcode"].multiline = true; Options["toolchange_gcode"].full_width = true;