From a5a003ed5589657cc53f41ba6042b28a4631cfed Mon Sep 17 00:00:00 2001 From: Antonio Vazquez Date: Fri, 6 Sep 2019 17:20:54 +0200 Subject: GPencil: New option to fade not selected objects Before, it was only possible to fade the active object. The new option allows to fade all non gpencil selected object. This is a common request by artists. {F7719513} Reviewers: mendio, pepeland Reviewed By: mendio Differential Revision: https://developer.blender.org/D5704 --- release/scripts/startup/bl_ui/space_view3d.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py index a86d09c55e6..d144c2ffab6 100644 --- a/release/scripts/startup/bl_ui/space_view3d.py +++ b/release/scripts/startup/bl_ui/space_view3d.py @@ -6137,9 +6137,10 @@ class VIEW3D_PT_overlay_gpencil_options(Panel): row = col.row() row.prop(overlay, "use_gpencil_paper", text="") - sub = row.row() + sub = row.row(align=True) sub.active = overlay.use_gpencil_paper - sub.prop(overlay, "gpencil_paper_opacity", text="Fade 3D Objects", slider=True) + sub.prop(overlay, "gpencil_paper_opacity", text="Fade Objects", slider=True) + sub.prop(overlay, "use_gpencil_fade_objects", text="", icon='OUTLINER_OB_GREASEPENCIL') if context.object.mode == 'PAINT_GPENCIL': row = col.row() -- cgit v1.2.3