Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Weissbarth <oweissbarth>2022-07-25 21:31:40 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-07-25 21:43:52 +0300
commit3ec8a60720da4b2b4ad6d40f26b6a1aa30791973 (patch)
tree0cda53671532f13bf1e76b272fd69d46c2ca3e54
parente7ce79d8f24197e7b49ababd94612450f166d206 (diff)
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
-rw-r--r--node_wrangler.py4
1 files changed, 2 insertions, 2 deletions
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"),