From 68c31c41e52caa1ac5b527f835b16f8e298dfd86 Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Sun, 21 Mar 2021 18:40:38 +0100 Subject: UI: Title case for Proxy Setup and fix typo --- source/blender/makesrna/intern/rna_userdef.c | 4 ++-- 1 file 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"); -- cgit v1.2.3