diff --git a/src/libslic3r/ExtrusionEntity.cpp b/src/libslic3r/ExtrusionEntity.cpp index e4b49c9a83..0b69ee47bb 100644 --- a/src/libslic3r/ExtrusionEntity.cpp +++ b/src/libslic3r/ExtrusionEntity.cpp @@ -356,8 +356,8 @@ std::string ExtrusionEntity::role_to_string(ExtrusionRole role) case erBridgeInfill : return L("Bridge"); case erInternalBridgeInfill : return L("Internal Bridge"); case erGapFill : return L("Gap infill"); - case erSkirt : return ("Skirt"); - case erBrim : return ("Brim"); + case erSkirt : return L("Skirt"); + case erBrim : return L("Brim"); case erSupportMaterial : return L("Support"); case erSupportMaterialInterface : return L("Support interface"); case erSupportTransition : return L("Support transition"); diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 54258afaf0..a292b218eb 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -3736,7 +3736,9 @@ void TabPrinter::toggle_options() // some options only apply when not using firmware retraction vec.resize(0); - vec = { "retraction_speed", "deretraction_speed", "retract_before_wipe", "retract_restart_extra", "wipe", "wipe_distance" }; + vec = {"retraction_speed", "deretraction_speed", "retract_before_wipe", + "retract_length", "retract_restart_extra", "wipe", + "wipe_distance"}; for (auto el : vec) //BBS toggle_option(el, retraction && !use_firmware_retraction, i);