Fix T102276: Hotkey conflict Alt D in Node Editor with Duplicate Linked and Detach

This unassign the Alt+D shortcut from the detach operator. Right now the
operator has to be accessed via the menu.

Alt+D is left for duplicate link, following the other editors.
This commit is contained in:
Dalai Felinto 2022-12-06 09:45:20 +01:00 committed by Thomas Dinges
parent 28235df709
commit fd70f9dfda
Notes: blender-bot 2023-02-14 10:37:49 +01:00
Referenced by issue #102967, 3.4: Potential candidates for corrective releases
Referenced by issue #102276, Hotkey conflict Alt D in Node Editor with Duplicate Linked and Detach
1 changed files with 0 additions and 3 deletions

View File

@ -2137,9 +2137,6 @@ def km_node_editor(params):
)),
("transform.rotate", {"type": 'R', "value": 'PRESS'}, None),
("transform.resize", {"type": 'S', "value": 'PRESS'}, None),
("node.move_detach_links",
{"type": 'D', "value": 'PRESS', "alt": True},
{"properties": [("TRANSFORM_OT_translate", [("view2d_edge_pan", True)])]}),
("node.move_detach_links_release",
{"type": params.action_mouse, "value": 'CLICK_DRAG', "alt": True},
{"properties": [("NODE_OT_translate_attach", [("TRANSFORM_OT_translate", [("view2d_edge_pan", True)])])]}),