From 3a29aeccd92f545a1fbfbf73cde1df00ae9afd10 Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Sun, 22 Oct 2017 23:03:16 -0500 Subject: [PATCH] Fix label for support material interface width. --- 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 c5dc67618..284284093 100644 --- a/xs/src/libslic3r/PrintConfig.cpp +++ b/xs/src/libslic3r/PrintConfig.cpp @@ -1431,7 +1431,7 @@ PrintConfigDef::PrintConfigDef() def->default_value = new ConfigOptionInt(1); def = this->add("support_material_interface_extrusion_width", coFloatOrPercent); - def->label = "Support material"; + def->label = "Support interface"; def->gui_type = "f_enum_open"; def->category = "Extrusion Width"; def->tooltip = "Set this to a non-zero value to set a manual extrusion width for support material interface. If expressed as percentage (for example 90%) it will be computed over layer height.";