From 37806c020a1e4bcc54d9349ba009c7d4acd0d73b Mon Sep 17 00:00:00 2001 From: bubnikv Date: Fri, 14 Dec 2018 19:40:02 +0100 Subject: [PATCH] Temporarily disabled the following check: "Levitating objects cannot be printed without support" until the unit tests are adjusted. --- src/libslic3r/PrintObject.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libslic3r/PrintObject.cpp b/src/libslic3r/PrintObject.cpp index 772d930aa..fdf950ee5 100644 --- a/src/libslic3r/PrintObject.cpp +++ b/src/libslic3r/PrintObject.cpp @@ -385,11 +385,13 @@ void PrintObject::generate_support_material() this->_generate_support_material(); m_print->throw_if_canceled(); } else { +#if 0 // Printing without supports. Empty layer means some objects or object parts are levitating, // therefore they cannot be printed without supports. for (const Layer *layer : m_layers) if (layer->empty()) throw std::runtime_error("Levitating objects cannot be printed without supports."); +#endif } this->set_done(posSupportMaterial); }