From 02c8bba8b42912e65e7e99051202afda9bc14ea4 Mon Sep 17 00:00:00 2001 From: Ian Bassi Date: Fri, 5 Dec 2025 09:03:12 -0300 Subject: [PATCH] Fix typo in extruder clearance resource name (#11569) Renamed 'param_extruder_clearence.svg' to 'param_extruder_clearance.svg' and updated the corresponding resource reference in Tab.cpp to correct the spelling error. Co-authored-by: Nanashi <53353250+NanashiTheNameless@users.noreply.github.com> --- ...aram_extruder_clearence.svg => param_extruder_clearance.svg} | 0 src/slic3r/GUI/Tab.cpp | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename resources/images/{param_extruder_clearence.svg => param_extruder_clearance.svg} (100%) diff --git a/resources/images/param_extruder_clearence.svg b/resources/images/param_extruder_clearance.svg similarity index 100% rename from resources/images/param_extruder_clearence.svg rename to resources/images/param_extruder_clearance.svg diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 5c12a960bc..f5f90f1acc 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -4413,7 +4413,7 @@ void TabPrinter::build_fff() optgroup->append_line(line); optgroup->append_single_option_line("fan_kickstart"); - optgroup = page->new_optgroup(L("Extruder Clearance"), "param_extruder_clearence"); + optgroup = page->new_optgroup(L("Extruder Clearance"), "param_extruder_clearance"); optgroup->append_single_option_line("extruder_clearance_radius"); optgroup->append_single_option_line("extruder_clearance_height_to_rod"); optgroup->append_single_option_line("extruder_clearance_height_to_lid");