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:
authorCampbell Barton <ideasman42@gmail.com>2012-06-05 23:39:12 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-05 23:39:12 +0400
commit465b11e971e126790ecd0dffa327a64189d4875e (patch)
tree788e6fc0948edec37ec35ad834ab5c322ad2f4bc /release
parent4ce2219901f247ce724bab6015138b4456483815 (diff)
operator to reset feather weights on all shape keys
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_clip.py16
1 files changed, 12 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_clip.py b/release/scripts/startup/bl_ui/space_clip.py
index 388843f8e70..9f283b70f77 100644
--- a/release/scripts/startup/bl_ui/space_clip.py
+++ b/release/scripts/startup/bl_ui/space_clip.py
@@ -1225,12 +1225,9 @@ class CLIP_MT_mask(Menu):
layout.operator("mask.parent_set")
layout.separator()
- layout.operator("mask.shape_key_clear")
- layout.operator("mask.shape_key_insert")
-
- layout.separator()
layout.menu("CLIP_MT_mask_visibility")
layout.menu("CLIP_MT_mask_transform")
+ layout.menu("CLIP_MT_mask_animation")
class CLIP_MT_mask_visibility(Menu):
@@ -1259,6 +1256,17 @@ class CLIP_MT_mask_transform(Menu):
props.mode = 'MASK_SHRINKFATTEN'
+class CLIP_MT_mask_animation(Menu):
+ bl_label = "Animation"
+
+ def draw(self, context):
+ layout = self.layout
+
+ layout.operator("mask.shape_key_clear")
+ layout.operator("mask.shape_key_insert")
+ layout.operator("mask.shape_key_feather_reset")
+
+
class CLIP_MT_camera_presets(Menu):
"""Predefined tracking camera intrinsics"""
bl_label = "Camera Presets"