diff --git a/src/libslic3r/Print.hpp b/src/libslic3r/Print.hpp index 0d2651cef..a28a8aa13 100644 --- a/src/libslic3r/Print.hpp +++ b/src/libslic3r/Print.hpp @@ -347,7 +347,9 @@ public: std::vector& firstLayerObjGroupsMod() { return firstLayerObjSliceByGroups; } bool has_brim() const { - return ((this->config().brim_type != btNoBrim && this->config().brim_width.value > 0.) || this->config().brim_type == btAutoBrim) + return ((this->config().brim_type != btNoBrim && this->config().brim_width.value > 0.) || + this->config().brim_type == btAutoBrim || + this->config().brim_type == btBrimEars) && ! this->has_raft(); }