From e29676ac98880d00247e1deeaaa2de58788dcfdb Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Tue, 30 Apr 2024 17:09:31 +0200 Subject: [PATCH] UI: Rename New Bone Collection confirmation button Rename "Move" to "Create" to match object collections operator and because it is the first action performed right after. Plus it is arguably the action with the most impact of the two. --- source/blender/editors/armature/bone_collections.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/armature/bone_collections.cc b/source/blender/editors/armature/bone_collections.cc index fd63b1d340c..c755034f818 100644 --- a/source/blender/editors/armature/bone_collections.cc +++ b/source/blender/editors/armature/bone_collections.cc @@ -1145,7 +1145,7 @@ static int move_to_new_collection_invoke(bContext *C, wmOperator *op) { RNA_string_set(op->ptr, "new_collection_name", IFACE_("Bones")); return WM_operator_props_dialog_popup( - C, op, 200, IFACE_("Move to New Bone Collection"), IFACE_("Move")); + C, op, 200, IFACE_("Move to New Bone Collection"), IFACE_("Create")); } static int move_to_collection_invoke(bContext *C, wmOperator *op, const wmEvent * /*event*/)