UI: Remove name property from node interface active panel UI

While it isn't "wrong" to have the name listed below too, In Blender
the name of an item is usually edited by double clicking inside
of list/tree views, and it's better to be consistent.
This commit is contained in:
Hans Goudey
2023-09-08 09:52:31 -04:00
parent 80b1d098a7
commit 6642bd6220
-1
View File
@@ -929,7 +929,6 @@ class NODE_PT_node_tree_interface(Panel):
active_item.draw(context, layout)
if active_item.item_type == 'PANEL':
layout.prop(active_item, "name")
layout.prop(active_item, "description")
layout.prop(active_item, "default_closed", text="Closed by Default")