[Bf-blender-cvs] [2f6a0647659] master: Fix T70068: sculpt mode hide masked not working after show all

Brecht Van Lommel noreply at git.blender.org
Thu Sep 19 14:41:41 CEST 2019


Commit: 2f6a0647659de2cfa695b3f53bb401e80503ed40
Author: Brecht Van Lommel
Date:   Thu Sep 19 14:40:33 2019 +0200
Branches: master
https://developer.blender.org/rB2f6a0647659de2cfa695b3f53bb401e80503ed40

Fix T70068: sculpt mode hide masked not working after show all

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

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 8d013518b8d..9188697002f 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2831,6 +2831,7 @@ class VIEW3D_MT_sculpt(Menu):
         props.area = 'INSIDE'
 
         props = layout.operator("paint.hide_show", text="Hide Masked")
+        props.action = 'HIDE'
         props.area = 'MASKED'
 
         layout.separator()



More information about the Bf-blender-cvs mailing list