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>2020-04-28 12:27:05 +0300
committerPablo Vazquez <pablo@blender.org>2020-04-28 12:27:05 +0300
commit0372121e17f734d55fc156b2afbedcc31242f362 (patch)
treef2b4ee749ea3a7e41591c22c26a0ad75f6d75bde
parenta66162e1f64e297663b8f652af9b056dd41e83b7 (diff)
UI: Title case for 'Prefetch Frames' in VSE
-rw-r--r--source/blender/makesrna/intern/rna_sequencer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c
index d218084fc66..876aad86f0c 100644
--- a/source/blender/makesrna/intern/rna_sequencer.c
+++ b/source/blender/makesrna/intern/rna_sequencer.c
@@ -2021,8 +2021,8 @@ static void rna_def_editor(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_prefetch", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "cache_flag", SEQ_CACHE_PREFETCH_ENABLE);
RNA_def_property_ui_text(prop,
- "Prefetch frames",
- "Render frames ahead of playhead in background for faster playback");
+ "Prefetch Frames",
+ "Render frames ahead of playhead in the background for faster playback");
RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, NULL);
prop = RNA_def_property(srna, "recycle_max_cost", PROP_FLOAT, PROP_NONE);