More Node Editor Fixups:

* Restored Mute and Hide Operators, M and H keys respectively
* Restored Make Links Operator (F). However, I can't figure out how to set the sockets so that this can be used
* Made Alt-RMB the new hotkey for breaking links by dragging, since Alt-LMB was taken for panning already
This commit is contained in:
Joshua Leung
2009-11-20 06:31:49 +00:00
parent cb40583b90
commit e7413bf791
5 changed files with 218 additions and 324 deletions

View File

@@ -106,17 +106,17 @@ class NODE_MT_node(bpy.types.Menu):
layout = self.layout
layout.itemO("tfm.translate")
layout.itemO("tfm.resize")
layout.itemO("tfm.rotate")
layout.itemO("tfm.resize")
layout.itemS()
layout.itemO("node.duplicate")
layout.itemO("node.delete")
# XXX
# layout.itemS()
# layout.itemO("node.make_link")
layout.itemS()
layout.itemO("node.link_make")
layout.itemS()
layout.itemO("node.group_edit")
layout.itemO("node.group_ungroup")
@@ -124,7 +124,8 @@ class NODE_MT_node(bpy.types.Menu):
layout.itemS()
layout.itemO("node.visibility_toggle")
layout.itemO("node.hide")
layout.itemO("node.mute")
# XXX
# layout.itemO("node.rename")