From e4346ca2abee42398a7f073dc1bbd09b1ba1edfe Mon Sep 17 00:00:00 2001 From: "zhou.xu" Date: Mon, 23 Sep 2024 11:03:49 +0800 Subject: [PATCH] ENH:change error message to a warning message for right-click Boolean operation jira: STUDIO-5656 Change-Id: Iedcd2cff48efc7e7a3c16ab735a041ce0b6e7096 --- src/slic3r/GUI/GUI_ObjectList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/GUI_ObjectList.cpp b/src/slic3r/GUI/GUI_ObjectList.cpp index 1d64e6303..8cca45235 100644 --- a/src/slic3r/GUI/GUI_ObjectList.cpp +++ b/src/slic3r/GUI/GUI_ObjectList.cpp @@ -3039,7 +3039,7 @@ void ObjectList::boolean() Plater::TakeSnapshot snapshot(wxGetApp().plater(), "boolean"); ModelObject* object = (*m_objects)[obj_idxs.front()]; - TriangleMesh mesh = Plater::combine_mesh_fff(*object, -1, [this](const std::string& msg) {return wxGetApp().notification_manager()->push_plater_error_notification(msg); }); + TriangleMesh mesh = Plater::combine_mesh_fff(*object, -1, [this](const std::string &msg) { return wxGetApp().notification_manager()->push_plater_warning_notification(msg); }); // add mesh to model as a new object, keep the original object's name and config Model* model = object->get_model();