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:
authorIvo Grigull <Monkeyloo@gmx.net>2011-01-14 15:58:48 +0300
committerIvo Grigull <Monkeyloo@gmx.net>2011-01-14 15:58:48 +0300
commit181da6cf251af0782e3e874ddf54a62743bc2d2a (patch)
tree158ef0b9f0fa1108a65ded45ff90ad0ba8a355bf /animation_add_corrective_shape_key.py
parent03d4f8f1f5c115bd17dc482167c8cef8104055cb (diff)
Removed the "Duplicate and flatten" button from modifiers and added to to the shape_key specials dropdown like the others.
Diffstat (limited to 'animation_add_corrective_shape_key.py')
-rw-r--r--animation_add_corrective_shape_key.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/animation_add_corrective_shape_key.py b/animation_add_corrective_shape_key.py
index 94d66901..66ee8b52 100644
--- a/animation_add_corrective_shape_key.py
+++ b/animation_add_corrective_shape_key.py
@@ -480,13 +480,13 @@ class add_corrective_pose_shape_fast(bpy.types.Operator):
def vgroups_draw(self, context):
layout = self.layout
+ layout.row().operator("object.object_duplicate_flatten_modifiers", text='Create duplicate for editing' )
layout.row().operator("object.add_corrective_pose_shape_fast", text='Add as corrective pose-shape (fast, armatures only)', icon='COPY_ID') # icon is not ideal
layout.row().operator("object.add_corrective_pose_shape", text='Add as corrective pose-shape (slow, all modifiers)', icon='COPY_ID') # icon is not ideal
def modifiers_draw(self, context):
layout = self.layout
- layout.operator("object.object_duplicate_flatten_modifiers" )
def register():