From 7c0c5705df1b6d7739c0d20b713e99741d91cc88 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Wed, 21 Aug 2019 09:28:32 +0200 Subject: [PATCH] Fix of Excessive external_perimeter_extrusion_width error #2784 Increased the perimeter_extrusion_width check limit to 3x nozzle diameter. --- src/libslic3r/Print.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/Print.cpp b/src/libslic3r/Print.cpp index e875db1dc..c5b619891 100644 --- a/src/libslic3r/Print.cpp +++ b/src/libslic3r/Print.cpp @@ -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; }