ENH:change error message to a warning message
for right-click Boolean operation jira: STUDIO-5656 Change-Id: Iedcd2cff48efc7e7a3c16ab735a041ce0b6e7096
This commit is contained in:
parent
3e35fd82d5
commit
e4346ca2ab
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue