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-03-10 01:13:51 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-10 01:13:51 +0300
commiteeeaa6e5e17bf218bf171dce659431e9d548f307 (patch)
tree6cfbd5428d9c5ff4b53d0de537069e994eb3c07e /io_anim_bvh
parent842a96b34c9e7532572a42c5629be49f751348af (diff)
fix [#26423] Import a BVH, rotate it, imported frames are deleted
was missing undo push as Joshua pointed out.
Diffstat (limited to 'io_anim_bvh')
-rw-r--r--io_anim_bvh/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/io_anim_bvh/__init__.py b/io_anim_bvh/__init__.py
index 350297a5..f7420555 100644
--- a/io_anim_bvh/__init__.py
+++ b/io_anim_bvh/__init__.py
@@ -46,6 +46,7 @@ class ImportBVH(bpy.types.Operator, ImportHelper):
'''Load a BVH motion capture file'''
bl_idname = "import_anim.bvh"
bl_label = "Import BVH"
+ bl_options = {'REGISTER', 'UNDO'}
filename_ext = ".bvh"
filter_glob = StringProperty(default="*.bvh", options={'HIDDEN'})