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
This commit is contained in:
Jacques Lucke 2022-04-26 16:58:53 +02:00
parent 7b16ddeb5a
commit 9a53599180
1 changed files with 4 additions and 4 deletions

View File

@ -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);
}