From 4bb913bcc88336983679429defa83346d56844b9 Mon Sep 17 00:00:00 2001 From: "lane.wei" Date: Wed, 6 Sep 2023 20:15:44 +0800 Subject: [PATCH] ENH: Support: set the float air warning also to non-critical JIRA: STUDIO-4217 Change-Id: Ic587acde0a566e4ea5217a5dc4f1ab8b6b155f5c --- src/libslic3r/PrintObject.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/libslic3r/PrintObject.cpp b/src/libslic3r/PrintObject.cpp index 9ae6843f67..d75fa7ec3f 100644 --- a/src/libslic3r/PrintObject.cpp +++ b/src/libslic3r/PrintObject.cpp @@ -477,10 +477,7 @@ void PrintObject::generate_support_material() {LargeOverhang,L("large overhangs")} }; std::string warning_message = format(L("It seems object %s has %s. Please re-orient the object or enable support generation."), this->model_object()->name, reasons[sntype]); - if (SharpTail == sntype) - this->active_step_add_warning(PrintStateBase::WarningLevel::CRITICAL, warning_message, PrintStateBase::SlicingNeedSupportOn); - else - this->active_step_add_warning(PrintStateBase::WarningLevel::NON_CRITICAL, warning_message, PrintStateBase::SlicingNeedSupportOn); + this->active_step_add_warning(PrintStateBase::WarningLevel::NON_CRITICAL, warning_message, PrintStateBase::SlicingNeedSupportOn); } #if 0