change label
parent
4fb9bb8c69
commit
477fd59778
|
@ -14,7 +14,7 @@ from node_kit.core.node_tree import NodeTree
|
||||||
|
|
||||||
class NODEKIT_OT_copy(bpy.types.Operator):
|
class NODEKIT_OT_copy(bpy.types.Operator):
|
||||||
bl_idname = 'node_kit.copy_node_tree'
|
bl_idname = 'node_kit.copy_node_tree'
|
||||||
bl_label = 'Copy node tree'
|
bl_label = 'Copy nodes'
|
||||||
bl_options = {'REGISTER', 'UNDO'}
|
bl_options = {'REGISTER', 'UNDO'}
|
||||||
|
|
||||||
select_only: bpy.props.BoolProperty(default=False)
|
select_only: bpy.props.BoolProperty(default=False)
|
||||||
|
@ -29,7 +29,7 @@ class NODEKIT_OT_copy(bpy.types.Operator):
|
||||||
|
|
||||||
class NODEKIT_OT_paste(bpy.types.Operator):
|
class NODEKIT_OT_paste(bpy.types.Operator):
|
||||||
bl_idname = 'node_kit.paste_node_tree'
|
bl_idname = 'node_kit.paste_node_tree'
|
||||||
bl_label = 'Paste node tree'
|
bl_label = 'Paste nodes'
|
||||||
|
|
||||||
def execute(self, context):
|
def execute(self, context):
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue