Modify error message when there are no 3D meshes in the rhino file.

This commit is contained in:
Viktor Kovacs 2021-04-22 08:28:17 +02:00
parent 8c6029d52d
commit e6452eb39f

View File

@ -61,7 +61,7 @@ OV.Importer3dm = class extends OV.ImporterBase
this.ImportRhinoDocument (rhinoDoc);
if (OV.IsModelEmpty (this.model)) {
this.SetError ();
this.SetMessage ('The model doesn\'t contain meshes.');
this.SetMessage ('The model doesn\'t contain any 3D meshes. Try to save the model while you are in shaded view in Rhino.');
}
}