Disable Explode Large Mesh Warning

Can this message be disabled?

Hi Martin - it looks like not - at least I do not see how.

@martinsiegrist I guess one way would be to sidestep Rhino and use a little script

import rhinoscriptsyntax as rs
Ids = rs.GetObjects("Select meshes", 32, preselect=True)
if Ids:rs.ExplodeMeshes(Ids)

-Pascal

Thanks for the feedback. It was getting a bit annoying when I was exploding and welding a mesh back and forth a few times…