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
path: root/source
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2022-02-26 07:34:08 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2022-02-26 07:34:08 +0300
commit576853661c4231ebe7f075966fdbe9340c8475f1 (patch)
treef225d60922af2654c26093a4247af668dbf7812e /source
parentd6b3723b088d2ae2652f2c821b4fdeafe5be7827 (diff)
UI: Use title case for labels
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_space.c2
1 files changed, 1 insertions, 1 deletions
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);
}