diff --git a/scripts/startup/bl_ui/space_node.py b/scripts/startup/bl_ui/space_node.py index 512e7451e0a..dfcfb451db0 100644 --- a/scripts/startup/bl_ui/space_node.py +++ b/scripts/startup/bl_ui/space_node.py @@ -891,7 +891,7 @@ class NODE_PT_node_tree_interface(Panel): bl_space_type = 'NODE_EDITOR' bl_region_type = 'UI' bl_category = "Group" - bl_label = "Interface" + bl_label = "Group Sockets" @classmethod def poll(cls, context): @@ -957,7 +957,7 @@ class NODE_PT_node_tree_properties(Panel): bl_space_type = 'NODE_EDITOR' bl_region_type = 'UI' bl_category = "Group" - bl_label = "Properties" + bl_label = "Group" @classmethod def poll(cls, context): @@ -978,15 +978,20 @@ class NODE_PT_node_tree_properties(Panel): layout.use_property_split = True layout.use_property_decorate = False - if group.bl_idname == "GeometryNodeTree": - col = layout.column() - col.prop(group, "is_modifier") - col.prop(group, "is_tool") + layout.prop(group, "name", text="Name") if group.asset_data: - layout.prop(group.asset_data, "description", text="Group Description") + layout.prop(group.asset_data, "description", text="Description") else: - layout.prop(group, "description", text="Group Description") + layout.prop(group, "description", text="Description") + + if group.bl_idname == "GeometryNodeTree": + header, body = layout.panel("group_usage") + header.label(text="Usage") + if body: + col = body.column(align=True) + col.prop(group, "is_modifier") + col.prop(group, "is_tool") # Grease Pencil properties @@ -1044,9 +1049,9 @@ classes = ( NODE_PT_geometry_node_tool_mode, NODE_PT_geometry_node_tool_options, NODE_PT_node_color_presets, + NODE_PT_node_tree_properties, NODE_MT_node_tree_interface_context_menu, NODE_PT_node_tree_interface, - NODE_PT_node_tree_properties, NODE_PT_active_node_generic, NODE_PT_active_node_color, NODE_PT_texture_mapping,