Commit: 6e7ea807e1e8aa0791a3c1d8875e74d64481973c
Author: Jacques Lucke
Date:   Tue Aug 13 15:45:54 2019 +0200
Branches: master
https://developer.blender.org/rB6e7ea807e1e8aa0791a3c1d8875e74d64481973c

UI: Fix wrong properties being grayed out

This has been mentioned in T68610.

===================================================================

M       release/scripts/startup/bl_ui/properties_data_bone.py

===================================================================

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")

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to