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:
authorAntonioya <blendergit@gmail.com>2019-02-14 18:51:50 +0300
committerAntonioya <blendergit@gmail.com>2019-02-14 18:52:15 +0300
commit1f1eea675f390cbd8fc32e9f67002637dc8250a7 (patch)
treebb2794084d290b98e2478bacc35d7e52eaccc49a /release
parent6995d51c7512d92d4b3c15d1ee6c3f0702605cfa (diff)
GP: Cleanup some lowercase texts
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_shaderfx.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_shaderfx.py b/release/scripts/startup/bl_ui/properties_data_shaderfx.py
index a0cb7e0fabd..23add1bb4ce 100644
--- a/release/scripts/startup/bl_ui/properties_data_shaderfx.py
+++ b/release/scripts/startup/bl_ui/properties_data_shaderfx.py
@@ -111,13 +111,13 @@ 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")
layout.separator()
- layout.prop(fx, "use_wave", text="Use Wave effect")
+ layout.prop(fx, "use_wave", text="Use Wave Effect")
if fx.use_wave is True:
row = layout.row(align=True)
row.prop(fx, "orientation", expand=True)
@@ -136,7 +136,7 @@ class DATA_PT_shader_fx(ShaderFxButtonsPanel, Panel):
layout.separator()
layout.prop(fx, "radius")
layout.prop(fx, "samples")
- layout.prop(fx, "use_alpha_mode", text="Use alpha mode")
+ layout.prop(fx, "use_alpha_mode", text="Use Alpha Mode")
def FX_SWIRL(self, layout, fx):
layout.prop(fx, "object", text="Object")