From 7e3024d6ad48e0c80b35605c30387a860d9cecac Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Fri, 25 Apr 2014 20:29:37 +0200 Subject: [PATCH] Explain that infill_every_layers can be set to arbitrarily large values in the tooltip --- xs/src/PrintConfig.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xs/src/PrintConfig.hpp b/xs/src/PrintConfig.hpp index 50c03007f..16885f213 100644 --- a/xs/src/PrintConfig.hpp +++ b/xs/src/PrintConfig.hpp @@ -693,7 +693,7 @@ class PrintConfigDef Options["solid_infill_every_layers"].type = coInt; Options["solid_infill_every_layers"].label = "Solid infill every"; Options["solid_infill_every_layers"].category = "Infill"; - Options["solid_infill_every_layers"].tooltip = "This feature allows to force a solid layer every given number of layers. Zero to disable."; + Options["solid_infill_every_layers"].tooltip = "This feature allows to force a solid layer every given number of layers. Zero to disable. You can set this to any value (for example 9999); Slic3r will automatically choose the maximum possible number of layers to combine according to nozzle diameter and layer height."; Options["solid_infill_every_layers"].sidetext = "layers"; Options["solid_infill_every_layers"].cli = "solid-infill-every-layers=i"; Options["solid_infill_every_layers"].min = 0;