From 2d192b40050e63b198c3287d9a7ada5f3352c589 Mon Sep 17 00:00:00 2001 From: Mikhail Rachinskiy Date: Wed, 4 Dec 2019 08:46:23 +0400 Subject: STL: fix T72145 crash exporting object without data --- io_mesh_stl/blender_utils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/io_mesh_stl/blender_utils.py b/io_mesh_stl/blender_utils.py index d1b14cf6..63f0c4f2 100644 --- a/io_mesh_stl/blender_utils.py +++ b/io_mesh_stl/blender_utils.py @@ -78,7 +78,8 @@ def faces_from_mesh(ob, global_matrix, use_mesh_modifiers=False): """ # get the editmode data - ob.update_from_editmode() + if ob.mode == "EDIT": + ob.update_from_editmode() # get the modifiers if use_mesh_modifiers: @@ -92,6 +93,7 @@ def faces_from_mesh(ob, global_matrix, use_mesh_modifiers=False): mesh = mesh_owner.to_mesh() except RuntimeError: return + if mesh is None: return -- cgit v1.2.3