Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Vazquez <blendergit@gmail.com>2020-04-28 19:35:38 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-04-28 19:35:49 +0300
commitd366658d2d753844bcb65fdab3febe5407133f83 (patch)
tree3af6e843a8547971c6729f6ac73880a48e336afd
parentc1e6865ee324ce95286213778e442fcef701ce6a (diff)
GPencil: Remove redundant Control word from UI
-rw-r--r--release/scripts/startup/bl_ui/properties_data_modifier.py4
1 files changed, 2 insertions, 2 deletions
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")