[Bf-blender-cvs] [0349e82d8bb] greasepencil-object: GPencil: Rename "Vertex Factor" to "Vertex Color Factor"

Antonio Vazquez noreply at git.blender.org
Sun Nov 3 08:57:00 CET 2019


Commit: 0349e82d8bbbc1d114216f4ba44c0a63031cae9c
Author: Antonio Vazquez
Date:   Sun Nov 3 08:56:47 2019 +0100
Branches: greasepencil-object
https://developer.blender.org/rB0349e82d8bbbc1d114216f4ba44c0a63031cae9c

GPencil: Rename "Vertex Factor" to "Vertex Color Factor"

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

M	release/scripts/startup/bl_ui/properties_grease_pencil_common.py
M	release/scripts/startup/bl_ui/space_view3d_toolbar.py

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

diff --git a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
index 9210d832e5e..c575eb860a2 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -918,7 +918,7 @@ class GreasePencilMaterialsPanel:
                     row = layout.row()
                     row.prop(brush, "color", text="Vertex Color")
                     row = layout.row()
-                    row.prop(gp_settings, "vertex_color_factor", text="Vertex Factor")
+                    row.prop(gp_settings, "vertex_color_factor", text="Vertex Color Factor")
 
         else:
             space = context.space_data
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index a0438f4967f..643b43c7f28 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -2076,7 +2076,7 @@ class VIEW3D_PT_tools_grease_pencil_brush_mixcolor(View3DPanel, Panel):
 
         if brush.gpencil_tool == 'DRAW':
             row = layout.row(align=True)
-            row.prop(gp_settings, "vertex_color_factor", slider=True, text="Vertex Factor")
+            row.prop(gp_settings, "vertex_color_factor", slider=True, text="Vertex Color Factor")
 
         sub_row = layout.row(align=True)
         sub_row.prop(brush, "color", text="")



More information about the Bf-blender-cvs mailing list