From ea6cdd2b67ce66c0c28eb3be8045567359f1fc92 Mon Sep 17 00:00:00 2001 From: luz paz Date: Fri, 3 Oct 2025 12:09:12 +0200 Subject: [PATCH] Fix: typo in enum of 'Select Grouped' operator in pose mode This fixes a typo introduced in v4.5. Instead of `type="SIBILINGS"`, use `type="SIBLINGS"`. Pull Request: https://projects.blender.org/blender/blender/pulls/146764 --- source/blender/editors/armature/pose_select.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/armature/pose_select.cc b/source/blender/editors/armature/pose_select.cc index f792548ea13..713c0957611 100644 --- a/source/blender/editors/armature/pose_select.cc +++ b/source/blender/editors/armature/pose_select.cc @@ -1256,7 +1256,7 @@ void POSE_OT_select_grouped(wmOperatorType *ot) "Parents", "Select the parents of currently selected bones"}, {int(SelectRelatedMode::SIBLINGS), - "SIBILINGS", + "SIBLINGS", 0, "Siblings", "Select all bones that have the same parent as currently selected bones"},