[Bf-extensions-cvs] [3ec8a607] master: Fix T84451: Node Wrangler: change label from Swap Outputs to Swap Links

Oliver Weissbarth noreply at git.blender.org
Mon Jul 25 21:11:51 CEST 2022


Commit: 3ec8a60720da4b2b4ad6d40f26b6a1aa30791973
Author: Oliver Weissbarth
Date:   Mon Jul 25 20:31:40 2022 +0200
Branches: master
https://developer.blender.org/rBA3ec8a60720da4b2b4ad6d40f26b6a1aa30791973

Fix T84451: Node Wrangler: change label from Swap Outputs to Swap Links

The Operator is internally called "Swap Links" and the manual also calls it
"Swap Links" as it can swap inputs and outputs.

Differential Revision: https://developer.blender.org/D10031

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

M	node_wrangler.py

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

diff --git a/node_wrangler.py b/node_wrangler.py
index eed4c2fb..73696ddd 100644
--- a/node_wrangler.py
+++ b/node_wrangler.py
@@ -5194,8 +5194,8 @@ kmi_defs = (
     (NWDeleteUnused.bl_idname, 'X', 'PRESS', False, False, True, None, "Delete unused nodes"),
     # Frame Selected
     (NWFrameSelected.bl_idname, 'P', 'PRESS', False, True, False, None, "Frame selected nodes"),
-    # Swap Outputs
-    (NWSwapLinks.bl_idname, 'S', 'PRESS', False, False, True, None, "Swap Outputs"),
+    # Swap Links
+    (NWSwapLinks.bl_idname, 'S', 'PRESS', False, False, True, None, "Swap Links"),
     # Preview Node
     (NWPreviewNode.bl_idname, 'LEFTMOUSE', 'PRESS', True, True, False, (('run_in_geometry_nodes', False),), "Preview node output"),
     (NWPreviewNode.bl_idname, 'LEFTMOUSE', 'PRESS', False, True, True, (('run_in_geometry_nodes', True),), "Preview node output"),



More information about the Bf-extensions-cvs mailing list