diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 24a914ec89..be77b4d908 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -422,12 +422,12 @@ static const t_config_enum_values s_keys_map_GCodeThumbnailsFormat = { }; CONFIG_OPTION_ENUM_DEFINE_STATIC_MAPS(GCodeThumbnailsFormat) -static const t_config_enum_values s_keys_map_CounterboleHoleBridgingOption{ +static const t_config_enum_values s_keys_map_CounterboreHoleBridgingOption{ { "none", chbNone }, { "partiallybridge", chbBridges }, { "sacrificiallayer", chbFilled }, }; -CONFIG_OPTION_ENUM_DEFINE_STATIC_MAPS(CounterboleHoleBridgingOption) +CONFIG_OPTION_ENUM_DEFINE_STATIC_MAPS(CounterboreHoleBridgingOption) static void assign_printer_technology_to_unknown(t_optiondef_map &options, PrinterTechnology printer_technology) { @@ -978,8 +978,8 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionBool(false)); - def = this->add("counterbole_hole_bridging", coEnum); - def->label = L("Bridge counterbole holes"); + def = this->add("counterbore_hole_bridging", coEnum); + def->label = L("Bridge counterbore holes"); def->category = L("Quality"); def->tooltip = L( "This option creates bridges for counterbore holes, allowing them to be printed without support. Available modes include:\n" @@ -987,14 +987,14 @@ void PrintConfigDef::init_fff_params() "2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" "3. Sacrificial Layer: A full sacrificial bridge layer is created."); def->mode = comAdvanced; - def->enum_keys_map = &ConfigOptionEnum::get_enum_values(); + def->enum_keys_map = &ConfigOptionEnum::get_enum_values(); def->enum_values.emplace_back("none"); def->enum_values.emplace_back("partiallybridge"); def->enum_values.emplace_back("sacrificiallayer"); def->enum_labels.emplace_back(L("None")); def->enum_labels.emplace_back(L("Partially bridged")); def->enum_labels.emplace_back(L("Sacrificial layer")); - def->set_default_value(new ConfigOptionEnum(chbNone)); + def->set_default_value(new ConfigOptionEnum(chbNone)); def = this->add("overhang_reverse_threshold", coFloatOrPercent); def->label = L("Reverse threshold");