Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <mail@jlucke.com>2019-08-13 16:45:54 +0300
committerJacques Lucke <mail@jlucke.com>2019-08-13 16:47:03 +0300
commit6e7ea807e1e8aa0791a3c1d8875e74d64481973c (patch)
tree5c3faa08f665e3cea26de716ebeb39fce92b3073 /release
parent03bf84db86bc023cfad501b1b4764cecb6435422 (diff)
UI: Fix wrong properties being grayed out
This has been mentioned in T68610.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_bone.py8
1 files changed, 4 insertions, 4 deletions
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")