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:
-rw-r--r--io_mesh_ply/__init__.py2
-rw-r--r--io_mesh_stl/__init__.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/io_mesh_ply/__init__.py b/io_mesh_ply/__init__.py
index e6ad0af1..c653a778 100644
--- a/io_mesh_ply/__init__.py
+++ b/io_mesh_ply/__init__.py
@@ -46,7 +46,7 @@ from io_utils import ImportHelper, ExportHelper
class ImportPLY(bpy.types.Operator, ImportHelper):
- '''Load a BVH motion capture file'''
+ '''Load a PLY geometry file'''
bl_idname = "import_mesh.ply"
bl_label = "Import PLY"
diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py
index 0a1ca354..8d5297fd 100644
--- a/io_mesh_stl/__init__.py
+++ b/io_mesh_stl/__init__.py
@@ -71,6 +71,8 @@ class ImportSTL(bpy.types.Operator, ImportHelper):
bl_label = "Import STL"
filename_ext = ".stl"
+
+ filter_glob = StringProperty(default="*.stl", options={'HIDDEN'})
files = CollectionProperty(name="File Path",
description="File path used for importing "