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:
authorWilliam Reynish <billrey@me.com>2019-06-23 01:19:28 +0300
committerWilliam Reynish <billrey@me.com>2019-06-23 01:19:28 +0300
commit6182531baf4b37b5dd19be628e487ac8e064062b (patch)
treedfda2dc178f36bcc641cbf77523b509c0ae1e277 /source/blender/makesrna/intern/rna_sequencer.c
parenta7c4eda3e3a22b216a7f8603f71bfc634f9f0b1f (diff)
UI: Adjust naming for recent Scene Strip options
- Use Sequencer rather than Sequence - Use Camera rather than 3D Camera
Diffstat (limited to 'source/blender/makesrna/intern/rna_sequencer.c')
-rw-r--r--source/blender/makesrna/intern/rna_sequencer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c
index 8eaccfd1066..7e14775ee06 100644
--- a/source/blender/makesrna/intern/rna_sequencer.c
+++ b/source/blender/makesrna/intern/rna_sequencer.c
@@ -2209,11 +2209,11 @@ static void rna_def_scene(BlenderRNA *brna)
PropertyRNA *prop;
static const EnumPropertyItem scene_input_items[] = {
- {0, "3D_CAMERA", ICON_VIEW3D, "3D Camera", "Use the Scene's 3D camera as input"},
+ {0, "CAMERA", ICON_VIEW3D, "Camera", "Use the Scene's 3D camera as input"},
{SEQ_SCENE_STRIPS,
- "SEQUENCE",
+ "SEQUENCER",
ICON_SEQUENCE,
- "Sequence",
+ "Sequencer",
"Use the Scene's Sequencer timeline as input"},
{0, NULL, 0, NULL, NULL},
};