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_anim_acclaim
parentf1b4acba3fc8b56bf3232cd5c05b8266a6af899e (diff)
make sure all filepath props have FILE_PATH subtype
Diffstat (limited to 'io_anim_acclaim')
-rw-r--r--io_anim_acclaim/__init__.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/io_anim_acclaim/__init__.py b/io_anim_acclaim/__init__.py
index 9c50f919..be9996d9 100644
--- a/io_anim_acclaim/__init__.py
+++ b/io_anim_acclaim/__init__.py
@@ -312,9 +312,7 @@ class AsfImporter(bpy.types.Operator):
bl_label = "Import ASF"
filepath = StringProperty(
- name="File Path",
- maxlen=1024, default="",
- description="Path to the ASF file",
+ subtype='FILE_PATH',
)
armature_name = StringProperty(
name="Armature Name", maxlen=32,
@@ -408,8 +406,7 @@ class AmcImporter(bpy.types.Operator):
bl_label = "Import AMC"
filepath = StringProperty(
- name="File Path", maxlen=1024,
- description="Path to the AMC file",
+ subtype='FILE_PATH',
)
frame_skip = IntProperty(
name="Fps divisor",