[Bf-blender-cvs] [576853661c4] master: UI: Use title case for labels

Aaron Carlisle noreply at git.blender.org
Sat Feb 26 05:34:14 CET 2022


Commit: 576853661c4231ebe7f075966fdbe9340c8475f1
Author: Aaron Carlisle
Date:   Fri Feb 25 23:34:08 2022 -0500
Branches: master
https://developer.blender.org/rB576853661c4231ebe7f075966fdbe9340c8475f1

UI: Use title case for labels

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

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

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

diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 88378542a9f..2344aa42838 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -5469,7 +5469,7 @@ static void rna_def_space_sequencer_preview_overlay(BlenderRNA *brna)
 
   prop = RNA_def_property(srna, "show_cursor", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_PREVIEW_SHOW_2D_CURSOR);
-  RNA_def_property_ui_text(prop, "2D cursor", "");
+  RNA_def_property_ui_text(prop, "2D Cursor", "");
   RNA_def_property_update(prop, NC_SPACE | ND_SPACE_SEQUENCER, NULL);
 }



More information about the Bf-blender-cvs mailing list