From e6452eb39fa2bd099648c9ef484d70138addc424 Mon Sep 17 00:00:00 2001 From: Viktor Kovacs Date: Thu, 22 Apr 2021 08:28:17 +0200 Subject: [PATCH] Modify error message when there are no 3D meshes in the rhino file. --- source/external/rhino.importer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/external/rhino.importer.js b/source/external/rhino.importer.js index 9d84c73..0b4d854 100644 --- a/source/external/rhino.importer.js +++ b/source/external/rhino.importer.js @@ -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.'); } }