Skip to content

Commit

Permalink
misc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
SoftFever committed Aug 22, 2023
1 parent 95762fa commit 08b7af6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/libslic3r/ExtrusionEntity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
4 changes: 3 additions & 1 deletion src/slic3r/GUI/Tab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 08b7af6

Please sign in to comment.