Skip to content
Snippets Groups Projects
Commit eeeaa6e5 authored by Campbell Barton's avatar Campbell Barton
Browse files

fix [#26423] Import a BVH, rotate it, imported frames are deleted

was missing undo push as Joshua pointed out.
parent 842a96b3
No related branches found
No related tags found
No related merge requests found
......@@ -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'})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment