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:
authorSebastian Koenig <sebastiankoenig@posteo.de>2018-09-27 13:44:51 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-09-27 15:15:10 +0300
commit1472550ba195a3278ee3eb2977515c2c3b62c9ce (patch)
tree7f92f06d66d52977ca9b79f7ed4428dbd60005eb /source/blender/makesrna/intern/rna_movieclip.c
parente9a38c50d9af6cbb96b235b725427b262ce56c5d (diff)
UI: new clip editor panels and headers layout.
* Panels now use single column layout. * Footage Info was moved into Footage Settings. * Display settings are now in a popover in the header. * Graph view shows tracking controls in the header center. Differential Revision: https://developer.blender.org/D3643
Diffstat (limited to 'source/blender/makesrna/intern/rna_movieclip.c')
-rw-r--r--source/blender/makesrna/intern/rna_movieclip.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/makesrna/intern/rna_movieclip.c b/source/blender/makesrna/intern/rna_movieclip.c
index 81c3c9b43b9..aedaeccc0b6 100644
--- a/source/blender/makesrna/intern/rna_movieclip.c
+++ b/source/blender/makesrna/intern/rna_movieclip.c
@@ -230,11 +230,11 @@ static void rna_def_moviecliUser(BlenderRNA *brna)
PropertyRNA *prop;
static const EnumPropertyItem clip_render_size_items[] = {
- {MCLIP_PROXY_RENDER_SIZE_25, "PROXY_25", 0, "Proxy size 25%", ""},
- {MCLIP_PROXY_RENDER_SIZE_50, "PROXY_50", 0, "Proxy size 50%", ""},
- {MCLIP_PROXY_RENDER_SIZE_75, "PROXY_75", 0, "Proxy size 75%", ""},
- {MCLIP_PROXY_RENDER_SIZE_100, "PROXY_100", 0, "Proxy size 100%", ""},
- {MCLIP_PROXY_RENDER_SIZE_FULL, "FULL", 0, "No proxy, full render", ""},
+ {MCLIP_PROXY_RENDER_SIZE_25, "PROXY_25", 0, "25%", ""},
+ {MCLIP_PROXY_RENDER_SIZE_50, "PROXY_50", 0, "50%", ""},
+ {MCLIP_PROXY_RENDER_SIZE_75, "PROXY_75", 0, "75%", ""},
+ {MCLIP_PROXY_RENDER_SIZE_100, "PROXY_100", 0, "100%", ""},
+ {MCLIP_PROXY_RENDER_SIZE_FULL, "FULL", 0, "None, full render", ""},
{0, NULL, 0, NULL, NULL}
};