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:
authorCampbell Barton <ideasman42@gmail.com>2010-06-27 02:33:13 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-06-27 02:33:13 +0400
commit69a384d3ed2608ae6cf064dd33c9293908b955e6 (patch)
tree4a986acbb69de36bd6517634e986fa8fa7217b4b /io_mesh_raw
parentd35dee7d0ce5719d26c2db1fa2b46b007a58cf60 (diff)
remove filename and directory from ops that dont need them
Diffstat (limited to 'io_mesh_raw')
-rw-r--r--io_mesh_raw/export_raw.py2
-rw-r--r--io_mesh_raw/import_raw.py2
2 files changed, 0 insertions, 4 deletions
diff --git a/io_mesh_raw/export_raw.py b/io_mesh_raw/export_raw.py
index f0217144..e2fd918b 100644
--- a/io_mesh_raw/export_raw.py
+++ b/io_mesh_raw/export_raw.py
@@ -95,8 +95,6 @@ class RawExporter(bpy.types.Operator):
bl_label = "Export RAW"
filepath = StringProperty(name="File Path", description="Filepath used for exporting the RAW file", maxlen= 1024, default= "")
- filename = StringProperty(name="File Name", description="Name of the file.")
- directory = StringProperty(name="Directory", description="Directory of the file.")
check_existing = BoolProperty(name="Check Existing", description="Check and warn on overwriting existing files", default=True, options={'HIDDEN'})
apply_modifiers = BoolProperty(name="Apply Modifiers", description="Use transformed mesh data from each object", default=True)
diff --git a/io_mesh_raw/import_raw.py b/io_mesh_raw/import_raw.py
index 96b0c653..a541b2ef 100644
--- a/io_mesh_raw/import_raw.py
+++ b/io_mesh_raw/import_raw.py
@@ -120,8 +120,6 @@ class RawImporter(bpy.types.Operator):
bl_label = "Import RAW"
filepath = StringProperty(name="File Path", description="Filepath used for importing the RAW file", maxlen=1024, default="")
- filename = StringProperty(name="File Name", description="Name of the file.")
- directory = StringProperty(name="Directory", description="Directory of the file.")
def execute(self, context):