[Bf-blender-cvs] [1f1eea675f3] master: GP: Cleanup some lowercase texts

Antonioya noreply at git.blender.org
Thu Feb 14 16:52:28 CET 2019


Commit: 1f1eea675f390cbd8fc32e9f67002637dc8250a7
Author: Antonioya
Date:   Thu Feb 14 16:51:50 2019 +0100
Branches: master
https://developer.blender.org/rB1f1eea675f390cbd8fc32e9f67002637dc8250a7

GP: Cleanup some lowercase texts

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

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

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

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")



More information about the Bf-blender-cvs mailing list