Repe [T3DU] Update - 31f26d171bba0355ce2a77031e3aad4c64dbc7e9

This commit is contained in:
2026-09-04 10:46:13 -07:00
parent c915312901
commit 0460b9d587
482 changed files with 27797 additions and 3226 deletions

View File

@ -143,7 +143,10 @@ class LNX_UL_TraitList(bpy.types.UIList):
row.prop(item, "enabled_prop")
# Display " " for props without a name to right-align the
# fake_user button
row.label(text=item.name if item.name != "" else " ", icon=custom_icon, icon_value=custom_icon_value)
label_text = item.name
if item.type_prop == "Logic Nodes" and item.node_tree_prop is not None:
label_text = item.node_tree_prop.name
row.label(text=label_text if label_text != "" else " ", icon=custom_icon, icon_value=custom_icon_value)
elif self.layout_type in {'GRID'}:
layout.alignment = 'CENTER'