From 67d5f8ea601b77277348a6eb85e30f3f59404b61 Mon Sep 17 00:00:00 2001 From: Christoph Lendenfeld Date: Tue, 14 Oct 2025 17:24:37 +0200 Subject: [PATCH] Fix: Select Pattern Operator for pose bones Due to the change of the selection state in pose mode to the pose bone, this operator was broken. Pull Request: https://projects.blender.org/blender/blender/pulls/148067 --- scripts/startup/bl_operators/object.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/startup/bl_operators/object.py b/scripts/startup/bl_operators/object.py index 2ccf13997c5..5e7b211298b 100644 --- a/scripts/startup/bl_operators/object.py +++ b/scripts/startup/bl_operators/object.py @@ -55,7 +55,7 @@ class SelectPattern(Operator): is_pbone = False obj = context.object if obj and obj.mode == 'POSE': - items = obj.data.bones + items = obj.pose.bones if not self.extend: bpy.ops.pose.select_all(action='DESELECT') is_pbone = True