From b861560c7128f811fc99e44f483567e65da53af1 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Wed, 18 Jul 2012 18:16:27 +0200 Subject: [PATCH] Fix tooltips about extrusion widths --- lib/Slic3r/Config.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Slic3r/Config.pm b/lib/Slic3r/Config.pm index 77101be18..916e29d4b 100644 --- a/lib/Slic3r/Config.pm +++ b/lib/Slic3r/Config.pm @@ -315,14 +315,14 @@ our $Options = { }, 'first_layer_extrusion_width' => { label => 'First layer', - tooltip => 'Set this to a non-zero value to set a manual extrusion width for first layer. You can use this to force fatter extrudates for better adhesion. If expressed as percentage (for example 120%) if will be computed over the default extrusion width (which could be calculated automatically or set manually using the option above).', + tooltip => 'Set this to a non-zero value to set a manual extrusion width for first layer. You can use this to force fatter extrudates for better adhesion. If expressed as percentage (for example 120%) if will be computed over layer height.', sidetext => 'mm or % (leave 0 for default)', cli => 'first-layer-extrusion-width=s', type => 'f', }, 'perimeter_extrusion_width' => { label => 'Perimeters', - tooltip => 'Set this to a non-zero value to set a manual extrusion width for perimeters. You may want to use thinner extrudates to get more accurate surfaces. If expressed as percentage (for example 90%) if will be computed over the default extrusion width (which could be calculated automatically or set manually using the option above).', + tooltip => 'Set this to a non-zero value to set a manual extrusion width for perimeters. You may want to use thinner extrudates to get more accurate surfaces. If expressed as percentage (for example 90%) if will be computed over layer height.', sidetext => 'mm or % (leave 0 for default)', cli => 'perimeter-extrusion-width=s', type => 'f', @@ -330,14 +330,14 @@ our $Options = { }, 'infill_extrusion_width' => { label => 'Infill', - tooltip => 'Set this to a non-zero value to set a manual extrusion width for infill. You may want to use fatter extrudates to speed up the infill and make your parts stronger. If expressed as percentage (for example 90%) if will be computed over the default extrusion width (which could be calculated automatically or set manually using the option above).', + tooltip => 'Set this to a non-zero value to set a manual extrusion width for infill. You may want to use fatter extrudates to speed up the infill and make your parts stronger. If expressed as percentage (for example 90%) if will be computed over layer height.', sidetext => 'mm or % (leave 0 for default)', cli => 'infill-extrusion-width=s', type => 'f', }, 'support_material_extrusion_width' => { label => 'Support material', - tooltip => 'Set this to a non-zero value to set a manual extrusion width for support material. If expressed as percentage (for example 90%) if will be computed over the default extrusion width (which could be calculated automatically or set manually using the option above).', + tooltip => 'Set this to a non-zero value to set a manual extrusion width for support material. If expressed as percentage (for example 90%) if will be computed over layer height.', sidetext => 'mm or % (leave 0 for default)', cli => 'support-material-extrusion-width=s', type => 'f',