[Bf-blender-cvs] [ea14c48c093] master: Fix T102276: Hotkey conflict Alt D in Node Editor with Duplicate Linked and Detach

Dalai Felinto noreply at git.blender.org
Tue Dec 6 09:46:58 CET 2022


Commit: ea14c48c0930498e5c086a604c6ab13a861461fe
Author: Dalai Felinto
Date:   Tue Dec 6 09:45:20 2022 +0100
Branches: master
https://developer.blender.org/rBea14c48c0930498e5c086a604c6ab13a861461fe

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.

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

M	release/scripts/presets/keyconfig/keymap_data/blender_default.py

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

diff --git a/release/scripts/presets/keyconfig/keymap_data/blender_default.py b/release/scripts/presets/keyconfig/keymap_data/blender_default.py
index a5ead8476cb..4c5969d4f0d 100644
--- a/release/scripts/presets/keyconfig/keymap_data/blender_default.py
+++ b/release/scripts/presets/keyconfig/keymap_data/blender_default.py
@@ -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)])])]}),



More information about the Bf-blender-cvs mailing list