[Bf-blender-cvs] [0372121e17f] master: UI: Title case for 'Prefetch Frames' in VSE

Pablo Vazquez noreply at git.blender.org
Tue Apr 28 11:27:13 CEST 2020


Commit: 0372121e17f734d55fc156b2afbedcc31242f362
Author: Pablo Vazquez
Date:   Tue Apr 28 11:27:05 2020 +0200
Branches: master
https://developer.blender.org/rB0372121e17f734d55fc156b2afbedcc31242f362

UI: Title case for 'Prefetch Frames' in VSE

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

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

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

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);



More information about the Bf-blender-cvs mailing list