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:
authorRichard Antalik <richardantalik@gmail.com>2020-10-05 03:24:51 +0300
committerRichard Antalik <richardantalik@gmail.com>2020-10-05 03:24:51 +0300
commitd12ff69320713420bb3fc4e1ac38c3f90202d392 (patch)
treea90698ee9a40ee3f77455a55382d923b151e3248 /source/blender/makesdna
parentf375ec4986daed7d54ca2bb418b764536f201b94 (diff)
Rename eSpaceSeq_Proxy_RenderSize members
Remove word proxy from eSpaceSeq_Proxy_RenderSize members if proxy is not used with that item. Otherwise this can be a bit confusing. Reviewed By: brecht Differential Revision: https://developer.blender.org/D8861
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_space_types.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h
index 22045a97826..867da1bcb82 100644
--- a/source/blender/makesdna/DNA_space_types.h
+++ b/source/blender/makesdna/DNA_space_types.h
@@ -635,13 +635,13 @@ typedef enum eSpaceSeq_Displays {
/* SpaceSeq.render_size */
typedef enum eSpaceSeq_Proxy_RenderSize {
- SEQ_PROXY_RENDER_SIZE_NONE = -1,
- SEQ_PROXY_RENDER_SIZE_SCENE = 0,
- SEQ_PROXY_RENDER_SIZE_25 = 25,
- SEQ_PROXY_RENDER_SIZE_50 = 50,
- SEQ_PROXY_RENDER_SIZE_75 = 75,
- SEQ_PROXY_RENDER_SIZE_100 = 99,
- SEQ_PROXY_RENDER_SIZE_FULL = 100,
+ SEQ_RENDER_SIZE_NONE = -1,
+ SEQ_RENDER_SIZE_SCENE = 0,
+ SEQ_RENDER_SIZE_PROXY_25 = 25,
+ SEQ_RENDER_SIZE_PROXY_50 = 50,
+ SEQ_RENDER_SIZE_PROXY_75 = 75,
+ SEQ_RENDER_SIZE_PROXY_100 = 99,
+ SEQ_RENDER_SIZE_FULL = 100,
} eSpaceSeq_Proxy_RenderSize;
typedef struct MaskSpaceInfo {