Fix #119812: 'Add Child Collection' adds a brother bone collection

Change label from "Add Child Collection" to "Add Bone Collection", as the
newly added collection becomes a sibling, not a child, of the active one.

Pull Request: https://projects.blender.org/blender/blender/pulls/119845
This commit is contained in:
Jun Mizutani 2024-03-25 09:25:24 +01:00 committed by Sybren A. Stüvel
parent 31aec5ae1d
commit cc580136c6

@ -165,7 +165,7 @@ class ARMATURE_MT_collection_tree_context_menu(Menu):
# editable or not. That means this menu has to do the disabling for it.
sub = layout.column()
sub.enabled = not active_bcoll_is_locked
sub.operator("armature.collection_add", text="Add Child Collection")
sub.operator("armature.collection_add", text="Add Bone Collection")
sub.operator("armature.collection_remove")
sub.operator("armature.collection_remove_unused", text="Remove Unused Collections")