[Bf-blender-cvs] [ee0ec0f2af4] blender-v2.93-release: Fix T83398: Fade inactive geometry overlay option not visible depending on the mode

Pablo Dobarro noreply at git.blender.org
Thu May 6 19:23:09 CEST 2021


Commit: ee0ec0f2af4f03340c4fc91495f702bb67a96c33
Author: Pablo Dobarro
Date:   Thu May 6 19:16:10 2021 +0200
Branches: blender-v2.93-release
https://developer.blender.org/rBee0ec0f2af4f03340c4fc91495f702bb67a96c33

Fix T83398: Fade inactive geometry overlay option not visible depending on the mode

This option should always be available. Even if it does not affect the
current object depending on its mode, it affects the rest of the geometry
of the scene.

The rest of the options also work this way. For example, a grease pencil
object does not have face orientation, but the ovelay option is still
there for the rest of the scene.

Reviewed By: JulienKaspar, HooglyBoogly

Maniphest Tasks: T83398

Differential Revision: https://developer.blender.org/D10215

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

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 d86e65d9f0d..bdc924e3197 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -6191,10 +6191,7 @@ class VIEW3D_PT_overlay_geometry(Panel):
         sub.prop(overlay, "wireframe_opacity", text="Opacity")
 
         row = col.row(align=True)
-        if context.mode not in {
-                'EDIT_ARMATURE', 'POSE', 'OBJECT',
-                'PAINT_GPENCIL', 'VERTEX_GPENCIL', 'WEIGHT_GPENCIL', 'SCULPT_GPENCIL', 'EDIT_GPENCIL',
-        }:
+        if context.mode != 'OBJECT':
             row.prop(overlay, "show_fade_inactive", text="")
             sub = row.row()
             sub.active = overlay.show_fade_inactive



More information about the Bf-blender-cvs mailing list