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>2011-12-12 01:25:04 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-12-12 01:25:04 +0400
commit595167d13b957826ffde132fd33a3b93b4d57863 (patch)
treeaf4e2777fc3f36a31f23905bf7fdcc8c1831a911 /io_mesh_raw
parentf1b4acba3fc8b56bf3232cd5c05b8266a6af899e (diff)
make sure all filepath props have FILE_PATH subtype
Diffstat (limited to 'io_mesh_raw')
-rw-r--r--io_mesh_raw/__init__.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/io_mesh_raw/__init__.py b/io_mesh_raw/__init__.py
index e9903b4d..f712a7a1 100644
--- a/io_mesh_raw/__init__.py
+++ b/io_mesh_raw/__init__.py
@@ -52,7 +52,9 @@ class RawImporter(bpy.types.Operator):
bl_label = "Import RAW"
bl_options = {'UNDO'}
- filepath = StringProperty(name="File Path", description="Filepath used for importing the RAW file", maxlen=1024, default="", subtype='FILE_PATH')
+ filepath = StringProperty(
+ subtype='FILE_PATH',
+ )
filter_glob = StringProperty(default="*.raw", options={'HIDDEN'})
def execute(self, context):
@@ -72,9 +74,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,
subtype='FILE_PATH',
)
check_existing = BoolProperty(