[Bf-blender-cvs] [68c31c41e52] master: UI: Title case for Proxy Setup and fix typo

Pablo Vazquez noreply at git.blender.org
Sun Mar 21 18:40:43 CET 2021


Commit: 68c31c41e52caa1ac5b527f835b16f8e298dfd86
Author: Pablo Vazquez
Date:   Sun Mar 21 18:40:38 2021 +0100
Branches: master
https://developer.blender.org/rB68c31c41e52caa1ac5b527f835b16f8e298dfd86

UI: Title case for Proxy Setup and fix typo

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

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

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

diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index edde5a1ed37..4c86405a44d 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -5460,7 +5460,7 @@ static void rna_def_userdef_system(BlenderRNA *brna)
   prop = RNA_def_property(srna, "sequencer_proxy_setup", PROP_ENUM, PROP_NONE);
   RNA_def_property_enum_items(prop, seq_proxy_setup_options);
   RNA_def_property_enum_sdna(prop, NULL, "sequencer_proxy_setup");
-  RNA_def_property_ui_text(prop, "Proxy setup", "When and how proxies are created");
+  RNA_def_property_ui_text(prop, "Proxy Setup", "When and how proxies are created");
 
   prop = RNA_def_property(srna, "scrollback", PROP_INT, PROP_UNSIGNED);
   RNA_def_property_int_sdna(prop, NULL, "scrollback");
@@ -5502,7 +5502,7 @@ static void rna_def_userdef_system(BlenderRNA *brna)
   RNA_def_property_collection_sdna(prop, NULL, "light_param", "");
   RNA_def_property_struct_type(prop, "UserSolidLight");
   RNA_def_property_ui_text(
-      prop, "Solid Lights", "Lights user to display objects in solid shading mode");
+      prop, "Solid Lights", "Lights used to display objects in solid shading mode");
 
   prop = RNA_def_property(srna, "light_ambient", PROP_FLOAT, PROP_COLOR);
   RNA_def_property_float_sdna(prop, NULL, "light_ambient");



More information about the Bf-blender-cvs mailing list