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-03-13 17:50:08 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-03-13 17:50:26 +0300
commitbe76a37c91dbd7c2c1f7946ac8a0815876e94f32 (patch)
tree9018489783a751e9b0d6e520a6ec18014a0de309 /release
parent5593efec01c211a55324b0e96ab6773aa713bd40 (diff)
GPencil: Fix UI typo
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_shaderfx.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_shaderfx.py b/release/scripts/startup/bl_ui/properties_data_shaderfx.py
index 8c9ea749d0a..1d4bf37b282 100644
--- a/release/scripts/startup/bl_ui/properties_data_shaderfx.py
+++ b/release/scripts/startup/bl_ui/properties_data_shaderfx.py
@@ -98,7 +98,7 @@ class DATA_PT_shader_fx(ShaderFxButtonsPanel, Panel):
layout.prop(fx, "rim_color")
layout.prop(fx, "mask_color")
- layout.prop(fx, "mode")
+ layout.prop(fx, "mode", text="Blend")
layout.prop(fx, "blur")
layout.prop(fx, "samples")
@@ -114,7 +114,7 @@ class DATA_PT_shader_fx(ShaderFxButtonsPanel, Panel):
layout.prop(fx, "samples")
layout.separator()
- layout.prop(fx, "use_object", text="Use Object As Pivot")
+ layout.prop(fx, "use_object", text="Use Object as Pivot")
if fx.use_object:
row = layout.row()
row.prop(fx, "object", text="Object")