From 1472550ba195a3278ee3eb2977515c2c3b62c9ce Mon Sep 17 00:00:00 2001 From: Sebastian Koenig Date: Thu, 27 Sep 2018 12:44:51 +0200 Subject: 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 --- source/blender/makesrna/intern/rna_movieclip.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source/blender/makesrna') 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} }; -- cgit v1.2.3