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:
authorDaniel Monteiro Basso <daniel@basso.inf.br>2013-12-11 00:02:25 +0400
committerDaniel Monteiro Basso <daniel@basso.inf.br>2013-12-11 00:02:25 +0400
commitc33c2c0b7a28787123f4b9e7354549a18e8b88b4 (patch)
treed51bcbdd5a8f5e26b2473a0573721dca8463f8c8 /io_anim_c3d/__init__.py
parent74ff9632637c44fddd06863968b38e12f18b1860 (diff)
Fix T37768: marker labels were misidentified
Diffstat (limited to 'io_anim_c3d/__init__.py')
-rw-r--r--io_anim_c3d/__init__.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/io_anim_c3d/__init__.py b/io_anim_c3d/__init__.py
index 0f918fdf..451af158 100644
--- a/io_anim_c3d/__init__.py
+++ b/io_anim_c3d/__init__.py
@@ -25,8 +25,8 @@
bl_info = {
"name": "C3D Graphics Lab Motion Capture file (.c3d)",
"author": "Daniel Monteiro Basso <daniel@basso.inf.br>",
- "version": (2013, 2, 16, 1),
- "blender": (2, 65, 9),
+ "version": (2013, 12, 10, 1),
+ "blender": (2, 69, 5),
"location": "File > Import",
"description": "Imports C3D Graphics Lab Motion Capture files",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
@@ -95,6 +95,7 @@ class C3DAnimateCloud(bpy.types.Operator):
def cancel(self, context):
bpy.context.scene.frame_set(bpy.context.scene.frame_current)
context.window_manager.event_timer_remove(self.timer)
+ return {'FINISHED'}
class C3DImporter(bpy.types.Operator):