diff --git a/release/scripts/startup/bl_ui/properties_data_bone.py b/release/scripts/startup/bl_ui/properties_data_bone.py index f739cd66699..8b691ddcc2a 100644 --- a/release/scripts/startup/bl_ui/properties_data_bone.py +++ b/release/scripts/startup/bl_ui/properties_data_bone.py @@ -147,13 +147,13 @@ class BONE_PT_curved(BoneButtonsPanel, Panel): layout.prop(bone, "bbone_segments", text="Segments") - topcol = layout.column() - topcol.active = bone.bbone_segments > 1 - - col = topcol.column(align=True) + col = layout.column(align=True) col.prop(bone, "bbone_x", text="Display Size X") col.prop(bone, "bbone_z", text="Z") + topcol = layout.column() + topcol.active = bone.bbone_segments > 1 + col = topcol.column(align=True) col.prop(bbone, "bbone_curveinx", text="Curve In X") col.prop(bbone, "bbone_curveiny", text="In Y")