[Bf-blender-cvs] [87450422829] custom-manipulators: Fix face-map button being greyed out

Campbell Barton noreply at git.blender.org
Wed May 31 09:02:29 CEST 2017


Commit: 874504228299b2124d4c62dedbdae8dfde1c5844
Author: Campbell Barton
Date:   Wed May 31 17:02:08 2017 +1000
Branches: custom-manipulators
https://developer.blender.org/rB874504228299b2124d4c62dedbdae8dfde1c5844

Fix face-map button being greyed out

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

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 b4fe03bd652..8b374e87028 100644
--- a/release/scripts/startup/bl_ui/properties_data_bone.py
+++ b/release/scripts/startup/bl_ui/properties_data_bone.py
@@ -294,8 +294,8 @@ class BONE_PT_display(BoneButtonsPanel, Panel):
 
             col = split.column()
             col.prop(bone, "hide", text="Hide")
+            col.prop(bone, "show_fmap")
             sub = col.column()
-            sub.prop(bone, "show_fmap")
             sub.active = bone.show_fmap
             sub.prop(bone, "show_only_fmap")
             sub = col.column()




More information about the Bf-blender-cvs mailing list