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:
authorBrendon Murphy <meta.androcto1@gmail.com>2015-06-28 19:57:45 +0300
committerBrendon Murphy <meta.androcto1@gmail.com>2015-06-28 19:57:45 +0300
commitdfb5851a203c2f93c92afb75dbbadefadeb923e1 (patch)
tree6f6ec2ac01e36f98b3d4b86eb2bc121127733aaa /space_view3d_copy_attributes.py
parentf5f7b1df1a6b304bf1daf8147afbe2074b8eef7c (diff)
fix for T45225 prevents copy to buffer. (ctrl/c)
Diffstat (limited to 'space_view3d_copy_attributes.py')
-rw-r--r--space_view3d_copy_attributes.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/space_view3d_copy_attributes.py b/space_view3d_copy_attributes.py
index 57e1a69e..d6edff27 100644
--- a/space_view3d_copy_attributes.py
+++ b/space_view3d_copy_attributes.py
@@ -266,6 +266,7 @@ class VIEW3D_MT_posecopypopup(bpy.types.Menu):
def draw(self, context):
layout = self.layout
layout.operator_context = 'INVOKE_REGION_WIN'
+ layout.operator("view3d.copybuffer", icon="COPY_ID")
for op in pose_copies:
layout.operator("pose.copy_" + op[0])
layout.operator("pose.copy_selected_constraints")
@@ -596,6 +597,7 @@ class VIEW3D_MT_copypopup(bpy.types.Menu):
def draw(self, context):
layout = self.layout
layout.operator_context = 'INVOKE_REGION_WIN'
+ layout.operator("view3d.copybuffer", icon="COPY_ID")
for op in object_copies:
layout.operator("object.copy_" + op[0])
layout.operator("object.copy_selected_constraints")
@@ -616,7 +618,8 @@ class MESH_MT_CopyFaceSettings(bpy.types.Menu):
uv = len(mesh.uv_textures) > 1
vc = len(mesh.vertex_colors) > 1
layout = self.layout
-
+ layout.operator("view3d.copybuffer", icon="COPY_ID")
+ layout.operator("view3d.pastebuffer", icon="COPY_ID")
op = layout.operator(MESH_OT_CopyFaceSettings.bl_idname,
text="Copy Material")
op['layer'] = ''