[Bf-blender-cvs] [d366658d2d7] master: GPencil: Remove redundant Control word from UI

Antonio Vazquez noreply at git.blender.org
Tue Apr 28 18:36:03 CEST 2020


Commit: d366658d2d753844bcb65fdab3febe5407133f83
Author: Antonio Vazquez
Date:   Tue Apr 28 18:35:38 2020 +0200
Branches: master
https://developer.blender.org/rBd366658d2d753844bcb65fdab3febe5407133f83

GPencil: Remove redundant Control word from UI

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

M	release/scripts/startup/bl_ui/properties_data_modifier.py

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

diff --git a/release/scripts/startup/bl_ui/properties_data_modifier.py b/release/scripts/startup/bl_ui/properties_data_modifier.py
index b95f81e1090..4b9f500cdba 100644
--- a/release/scripts/startup/bl_ui/properties_data_modifier.py
+++ b/release/scripts/startup/bl_ui/properties_data_modifier.py
@@ -1981,7 +1981,7 @@ class DATA_PT_gpencil_modifiers(ModifierButtonsPanel, Panel):
 
         col.prop(md, "mode")
         if md.mode in {'STROKE', 'STROKE_AND_FILL'}:
-            col.label(text="Stroke Texture Control:")
+            col.label(text="Stroke Texture:")
             col.prop(md, "fit_method")
             col.prop(md, "uv_offset")
             col.prop(md, "uv_scale")
@@ -1990,7 +1990,7 @@ class DATA_PT_gpencil_modifiers(ModifierButtonsPanel, Panel):
             col.separator()
 
         if md.mode in {'FILL', 'STROKE_AND_FILL'}:
-            col.label(text="Fill Texture Control:")
+            col.label(text="Fill Texture:")
             col.prop(md, "fill_rotation", text="Rotation")
             col.prop(md, "fill_offset", text="Location")
             col.prop(md, "fill_scale", text="Scale")



More information about the Bf-blender-cvs mailing list