[Bf-blender-cvs] [c10e05ceb89] master: Fix T69697: Remove not working "Inherit Scale" option from menu

Jacques Lucke noreply at git.blender.org
Wed Feb 12 17:02:30 CET 2020


Commit: c10e05ceb89ebb52707d519e091ebab9ca62e40b
Author: Jacques Lucke
Date:   Wed Feb 12 17:01:41 2020 +0100
Branches: master
https://developer.blender.org/rBc10e05ceb89ebb52707d519e091ebab9ca62e40b

Fix T69697: Remove not working "Inherit Scale" option from menu

The option can still be modified in the bone settings in the properties
editor. In the future a correct menu entry (using an enum) can be
added back. For that, an operator like `wm.context_collection_boolean_set`
could be added for enums.

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

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

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

diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index cffa52c8052..de5e6624085 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -3390,7 +3390,6 @@ class BoneOptions:
             "use_deform",
             "use_envelope_multiply",
             "use_inherit_rotation",
-            "inherit_scale",
         ]
 
         if context.mode == 'EDIT_ARMATURE':



More information about the Bf-blender-cvs mailing list