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__.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/io_mesh_ply/__init__.py b/io_mesh_ply/__init__.py
index cb3afd42..f99dbffb 100644
--- a/io_mesh_ply/__init__.py
+++ b/io_mesh_ply/__init__.py
@@ -71,6 +71,13 @@ class ImportPLY(bpy.types.Operator, ImportHelper):
),
type=bpy.types.OperatorFileListElement)
+ # Hide opertator properties, rest of this is managed in C. See WM_operator_properties_filesel().
+ hide_props_region: BoolProperty(
+ name="Hide Operator Properties",
+ description="Collapse the region displaying the operator settings",
+ default=True,
+ )
+
directory: StringProperty()
filename_ext = ".ply"