[Bf-blender-cvs] [2930d4fcea4] master: Fix T80031: UI: Use a more specific label for stencil mask opacity

Aaron Carlisle noreply at git.blender.org
Tue Sep 1 18:57:13 CEST 2020


Commit: 2930d4fcea405985f2212c5f28c061af7c4849f8
Author: Aaron Carlisle
Date:   Tue Sep 1 12:55:52 2020 -0400
Branches: master
https://developer.blender.org/rB2930d4fcea405985f2212c5f28c061af7c4849f8

Fix T80031: UI: Use a more specific label for stencil mask opacity

This is not the opacity of the vertex colors itself but of the stencil 
mask.

Follows up on rBbb4478f2fdd8426d6050bf7b7c09611afeb1bd14

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

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 7b4d969a6f1..c49f5b3e5d1 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -6500,7 +6500,7 @@ class VIEW3D_PT_overlay_vertex_paint(Panel):
         col = layout.column()
         col.active = display_all
 
-        col.prop(overlay, "vertex_paint_mode_opacity", text="Opacity")
+        col.prop(overlay, "vertex_paint_mode_opacity")
         col.prop(overlay, "show_paint_wire")



More information about the Bf-blender-cvs mailing list