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:
authorPablo Vazquez <pablo@blender.org>2021-03-21 20:40:38 +0300
committerPablo Vazquez <pablo@blender.org>2021-03-21 20:40:38 +0300
commit68c31c41e52caa1ac5b527f835b16f8e298dfd86 (patch)
tree759815b9c84ec821ecd34f1647c5784bdc0d6eb2
parent2ddbb2c64f00f1ba357fe41813523088a9215326 (diff)
UI: Title case for Proxy Setup and fix typo
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c4
1 files changed, 2 insertions, 2 deletions
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");