ENH:change error message to a warning message

for right-click Boolean operation
jira: STUDIO-5656

Change-Id: Iedcd2cff48efc7e7a3c16ab735a041ce0b6e7096
This commit is contained in:
zhou.xu 2024-09-23 11:03:49 +08:00 committed by Lane.Wei
parent 3e35fd82d5
commit e4346ca2ab
1 changed files with 1 additions and 1 deletions

View File

@ -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();