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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-04-12 14:50:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-12 14:50:33 +0300
commita96d42b2e890160cf5d0f8d3921a575d2ba13768 (patch)
tree42ba6b352cbb7399fa054e1085a7ef55d2c138a8 /release/scripts
parentf3c313e77983edb84e1bcd93cc7db707259bff6e (diff)
Rename Label instead of Name in Node editor using F2 key
Previously reverted change without RNA changes.
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/startup/bl_ui/space_topbar.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_topbar.py b/release/scripts/startup/bl_ui/space_topbar.py
index 7b9b324066a..25c715e8ae7 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -1084,11 +1084,11 @@ class TOPBAR_PT_name(Panel):
row.prop(item, "name", text="")
found = True
elif space_type == 'NODE_EDITOR':
- layout.label(text="Node Name")
+ layout.label(text="Node Label")
item = context.active_node
if item:
row = row_with_icon(layout, 'NODE')
- row.prop(item, "name", text="")
+ row.prop(item, "label", text="")
found = True
else:
if mode == 'POSE' or (mode == 'WEIGHT_PAINT' and context.pose_object):