Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2011-02-26 09:28:24 +0300
committerJoshua Leung <aligorith@gmail.com>2011-02-26 09:28:24 +0300
commit7a55884b627e62951c62630fae10eeab569fe3af (patch)
tree9d251cce3ebb14e603dee965eba7fa732e4dddca /source/blender/editors/space_action/action_ops.c
parent6a25ecb799f441af2d38bb9fbb8a3d13599cdd59 (diff)
Added operator which makes selected scene markers into local 'pose'
markers. This is useful for when working with lipsync shots, where you've used markers for noting down key syllables and want to separate these out into chunks to manage things better.
Diffstat (limited to 'source/blender/editors/space_action/action_ops.c')
-rw-r--r--source/blender/editors/space_action/action_ops.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/space_action/action_ops.c b/source/blender/editors/space_action/action_ops.c
index acb2fa09d04..e82c26488b5 100644
--- a/source/blender/editors/space_action/action_ops.c
+++ b/source/blender/editors/space_action/action_ops.c
@@ -79,6 +79,8 @@ void action_operatortypes(void)
WM_operatortype_append(ACTION_OT_previewrange_set);
WM_operatortype_append(ACTION_OT_view_all);
+
+ WM_operatortype_append(ACTION_OT_markers_make_local);
}
/* ************************** registration - keymaps **********************************/