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:
authorLuca Bonavita <mindrones@gmail.com>2010-07-27 01:37:55 +0400
committerLuca Bonavita <mindrones@gmail.com>2010-07-27 01:37:55 +0400
commitb30e2a57fc31ae5d072a66dd0238f528a85fc074 (patch)
tree8dd880c1476e119b5297a8cfa41850a0a82e9ab8 /release
parent7dd0395181a6e24c2d59b80c69a19a8f0e6dd8d1 (diff)
== node editor ==
- added backdrop commands in the view menu I couldnt finf them in the menus and also liquidape asked for them - added cut links command in menu, since also this one wasnt thast obvious (now it's ctrl-drag) - micro patch reviewed by jesterKing
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/space_node.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/release/scripts/ui/space_node.py b/release/scripts/ui/space_node.py
index 365835009ba..21b2ebc5390 100644
--- a/release/scripts/ui/space_node.py
+++ b/release/scripts/ui/space_node.py
@@ -90,6 +90,13 @@ class NODE_MT_view(bpy.types.Menu):
layout.operator("node.view_all")
+ if context.space_data.backdrop:
+ layout.separator()
+
+ layout.operator("node.backimage_move",text = "Backdrop move")
+ layout.operator("node.backimage_zoom",text = "Backdrop zoom in").factor = 1.2
+ layout.operator("node.backimage_zoom",text = "Backdrop zoom out").factor = 0.833
+
layout.separator()
layout.operator("screen.area_dupli")
@@ -131,6 +138,7 @@ class NODE_MT_node(bpy.types.Menu):
layout.separator()
layout.operator("node.link_make")
layout.operator("node.link_make", text="Make and Replace Links").replace = True
+ layout.operator("node.links_cut")
layout.separator()
layout.operator("node.group_edit")