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:
authorJacques Lucke <jacques@blender.org>2022-04-26 17:58:53 +0300
committerJacques Lucke <jacques@blender.org>2022-04-26 17:58:53 +0300
commit9a53599180041cf9501e2ac6150c9f900a3a3fc0 (patch)
tree1ca375417768880603535d533ad521027a02b2ef /source/blender/modifiers/intern/MOD_nodes.cc
parent7b16ddeb5a02d14e236c71673f21d1a99e275364 (diff)
Geometry Nodes: rename used attributes panel
The new name is `Internal Dependencies`. * Is more inline with the general goal of the panel. * Can also show which external objects are used in the node tree in the future. This name was choosen in the geometry nodes submodule meeting (2022-04-25). Differential Revision: https://developer.blender.org/D14752
Diffstat (limited to 'source/blender/modifiers/intern/MOD_nodes.cc')
-rw-r--r--source/blender/modifiers/intern/MOD_nodes.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/modifiers/intern/MOD_nodes.cc b/source/blender/modifiers/intern/MOD_nodes.cc
index ab33c27e213..3867abbd29c 100644
--- a/source/blender/modifiers/intern/MOD_nodes.cc
+++ b/source/blender/modifiers/intern/MOD_nodes.cc
@@ -1624,7 +1624,7 @@ static void output_attribute_panel_draw(const bContext *C, Panel *panel)
}
}
-static void used_attributes_panel_draw(const bContext *UNUSED(C), Panel *panel)
+static void internal_dependencies_panel_draw(const bContext *UNUSED(C), Panel *panel)
{
uiLayout *layout = panel->layout;
@@ -1708,10 +1708,10 @@ static void panelRegister(ARegionType *region_type)
output_attribute_panel_draw,
panel_type);
modifier_subpanel_register(region_type,
- "used_attributes",
- N_("Used Attributes"),
+ "internal_dependencies",
+ N_("Internal Dependencies"),
nullptr,
- used_attributes_panel_draw,
+ internal_dependencies_panel_draw,
panel_type);
}