[Bf-blender-cvs] [fae5348307f] master: Fix T70375: Typo in label (Height used instead of High).

Bastien Montagne noreply at git.blender.org
Mon Sep 30 16:03:42 CEST 2019


Commit: fae5348307f5534205a76935458881a71a4fba81
Author: Bastien Montagne
Date:   Mon Sep 30 16:01:37 2019 +0200
Branches: master
https://developer.blender.org/rBfae5348307f5534205a76935458881a71a4fba81

Fix T70375: Typo in label (Height used instead of High).

Also, use Title Caps for labels...

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

M	source/blender/makesrna/intern/rna_shader_fx.c

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

diff --git a/source/blender/makesrna/intern/rna_shader_fx.c b/source/blender/makesrna/intern/rna_shader_fx.c
index acf525e1788..cd4e027ce7c 100644
--- a/source/blender/makesrna/intern/rna_shader_fx.c
+++ b/source/blender/makesrna/intern/rna_shader_fx.c
@@ -260,14 +260,14 @@ static void rna_def_shader_fx_colorize(BlenderRNA *brna)
   RNA_def_property_range(prop, 0.0, 1.0);
   RNA_def_property_float_sdna(prop, NULL, "low_color");
   RNA_def_property_array(prop, 4);
-  RNA_def_property_ui_text(prop, "Low color", "First color used for effect");
+  RNA_def_property_ui_text(prop, "Low Color", "First color used for effect");
   RNA_def_property_update(prop, NC_OBJECT | ND_MODIFIER, "rna_ShaderFx_update");
 
   prop = RNA_def_property(srna, "high_color", PROP_FLOAT, PROP_COLOR_GAMMA);
   RNA_def_property_range(prop, 0.0, 1.0);
   RNA_def_property_float_sdna(prop, NULL, "high_color");
   RNA_def_property_array(prop, 4);
-  RNA_def_property_ui_text(prop, "Height color", "Second color used for effect");
+  RNA_def_property_ui_text(prop, "High Color", "Second color used for effect");
   RNA_def_property_update(prop, NC_OBJECT | ND_MODIFIER, "rna_ShaderFx_update");
 
   prop = RNA_def_property(srna, "mode", PROP_ENUM, PROP_NONE);



More information about the Bf-blender-cvs mailing list