UI: Sort transform properties for custom bone shape

Sort the order of custom bone shape transform properties consistently
with other areas.

Pull Request: https://projects.blender.org/blender/blender/pulls/134173
This commit is contained in:
Pasang Bomjan
2025-02-07 18:06:11 +01:00
committed by Pablo Vazquez
parent 87a4c0d3a8
commit 5884c61b4c

View File

@@ -411,9 +411,9 @@ class BONE_PT_display_custom_shape(BoneButtonsPanel, Panel):
sub.active = bool(pchan and pchan.custom_shape)
sub.separator()
sub.prop(pchan, "custom_shape_scale_xyz", text="Scale")
sub.prop(pchan, "custom_shape_translation", text="Translation")
sub.prop(pchan, "custom_shape_rotation_euler", text="Rotation")
sub.prop(pchan, "custom_shape_scale_xyz", text="Scale")
sub.prop_search(pchan, "custom_shape_transform", ob.pose, "bones", text="Override Transform")
sub.prop(pchan, "use_custom_shape_bone_size")