Skip to content

Commit

Permalink
Fix of Excessive external_perimeter_extrusion_width error #2784
Browse files Browse the repository at this point in the history
Increased the perimeter_extrusion_width check limit to 3x nozzle diameter.
  • Loading branch information
bubnikv committed Aug 21, 2019
1 parent 0fbfbf4 commit 7c0c570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libslic3r/Print.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1258,7 +1258,7 @@ std::string Print::validate() const
} else if (extrusion_width_min <= layer_height) {
err_msg = (boost::format(L("%1%=%2% mm is too low to be printable at a layer height %3% mm")) % opt_key % extrusion_width_min % layer_height).str();
return false;
} else if (extrusion_width_max >= max_nozzle_diameter * 2.) {
} else if (extrusion_width_max >= max_nozzle_diameter * 3.) {
err_msg = (boost::format(L("Excessive %1%=%2% mm to be printable with a nozzle diameter %3% mm")) % opt_key % extrusion_width_max % max_nozzle_diameter).str();
return false;
}
Expand Down

0 comments on commit 7c0c570

Please sign in to comment.