[Bf-extensions-cvs] [84b81711] master: Copy Attributes: remove copy objects to buffer from menu in pose/edit mode.

Brecht Van Lommel noreply at git.blender.org
Thu Oct 18 20:25:15 CEST 2018


Commit: 84b817117328b3193533324846ec389b1f5fe5c4
Author: Brecht Van Lommel
Date:   Thu Oct 18 20:24:06 2018 +0200
Branches: master
https://developer.blender.org/rBA84b817117328b3193533324846ec389b1f5fe5c4

Copy Attributes: remove copy objects to buffer from menu in pose/edit mode.

This works on selected objects so only really makes sense in object mode.

===================================================================

M	space_view3d_copy_attributes.py

===================================================================

diff --git a/space_view3d_copy_attributes.py b/space_view3d_copy_attributes.py
index 7e810da1..cb53511b 100644
--- a/space_view3d_copy_attributes.py
+++ b/space_view3d_copy_attributes.py
@@ -287,7 +287,6 @@ class VIEW3D_MT_posecopypopup(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")
@@ -663,10 +662,6 @@ class MESH_MT_CopyFaceSettings(Menu):
         vc = len(mesh.vertex_colors) > 1
 
         layout = self.layout
-        layout.operator("view3d.copybuffer", icon="COPY_ID")
-        layout.operator("view3d.pastebuffer", icon="COPY_ID")
-
-        layout.separator()
 
         op = layout.operator(MESH_OT_CopyFaceSettings.bl_idname,
                         text="Copy Material")



More information about the Bf-extensions-cvs mailing list