From d55fa2e02a195275807a967989d13b99ee1bdc52 Mon Sep 17 00:00:00 2001 From: Mikhail Rachinskiy <mikhail.rachinskiy@gmail.com> Date: Wed, 26 May 2021 08:13:39 +0400 Subject: [PATCH] STL: fix T88532 importer replaces underscores with spaces --- io_mesh_stl/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py index 7af1c2d18..c367946a3 100644 --- a/io_mesh_stl/__init__.py +++ b/io_mesh_stl/__init__.py @@ -139,7 +139,7 @@ class ImportSTL(Operator, ImportHelper): bpy.ops.object.select_all(action='DESELECT') for path in paths: - objName = bpy.path.display_name(os.path.basename(path)) + objName = bpy.path.display_name_from_filepath(path) tris, tri_nors, pts = stl_utils.read_stl(path) tri_nors = tri_nors if self.use_facet_normal else None blender_utils.create_and_link_mesh(objName, tris, tri_nors, pts, global_matrix) -- GitLab