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:
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index a132983dbb9..b04c695d6cf 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -4398,11 +4398,12 @@ class VIEW3D_PT_overlay_pose(Panel):
col = layout.column()
col.active = display_all
col.prop(overlay, "show_transparent_bones")
- row = col.split(0.65)
- row.prop(overlay, "show_bone_select")
- sub = row.column()
+
+ row = col.row()
+ row.prop(overlay, "show_bone_select", text="")
+ sub = row.row()
sub.active = display_all and overlay.show_bone_select
- sub.prop(overlay, "bone_select_alpha", text="")
+ sub.prop(overlay, "bone_select_alpha", text="Fade Geometry")
class VIEW3D_PT_overlay_edit_armature(Panel):