Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikhail Rachinskiy <mikhail.rachinskiy@gmail.com>2021-05-26 07:13:39 +0300
committerMikhail Rachinskiy <mikhail.rachinskiy@gmail.com>2021-05-26 07:13:39 +0300
commitd55fa2e02a195275807a967989d13b99ee1bdc52 (patch)
tree0fa2b288a43040010f83aed7d2c8f66ad5464d01
parent7867fe8bb34d6ddebcb0c29e143a506042571f69 (diff)
STL: fix T88532 importer replaces underscores with spaces
-rw-r--r--io_mesh_stl/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py
index 7af1c2d1..c367946a 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)