From dae1e892b68fe89d6e6c40b74c131b0b37285a0d Mon Sep 17 00:00:00 2001 From: supermerill Date: Thu, 26 Mar 2020 23:07:41 +0100 Subject: [PATCH] relax max width (change by @foxox) --- 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 964ebdc0a..afcf40b1b 100644 --- a/src/libslic3r/Print.cpp +++ b/src/libslic3r/Print.cpp @@ -1410,7 +1410,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 * 3.) { + } else if (extrusion_width_max >= max_nozzle_diameter * 4.) { 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; }