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:
authorAntony Riakiotakis <kalast@gmail.com>2015-03-25 14:05:34 +0300
committerAntony Riakiotakis <kalast@gmail.com>2015-03-25 14:05:34 +0300
commita180c8e2ed6ce62e6a15d28a0bb7f60bb58bc0cb (patch)
tree70d50ea80ac6aa47e561538338dd08ff322fbb82 /source/blender/makesdna/DNA_sequence_types.h
parent22dfb506229258e293d7ab32a2c495ce93084e9d (diff)
Allow multiple strips to use the same directory when custom proxy
directory is used. This is done by appending the name of the file as extra folder. Existing projects may need to regenerate their proxies but it should be possible now to have all proxies nicely in the same custom folder. Next commits will include operators to copy directory settings between selected strips, making the process faster.
Diffstat (limited to 'source/blender/makesdna/DNA_sequence_types.h')
-rw-r--r--source/blender/makesdna/DNA_sequence_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_sequence_types.h b/source/blender/makesdna/DNA_sequence_types.h
index 34fceaef4c0..c4de93efa6b 100644
--- a/source/blender/makesdna/DNA_sequence_types.h
+++ b/source/blender/makesdna/DNA_sequence_types.h
@@ -376,7 +376,7 @@ enum {
/* StripProxy->storage */
enum {
SEQ_STORAGE_PROXY_CUSTOM_FILE = (1 << 1), /* store proxy in custom directory */
- SEQ_STORAGE_PROXY_CUSTOM_DIR = (1 << 2) /* store proxy in custom file */
+ SEQ_STORAGE_PROXY_CUSTOM_DIR = (1 << 2), /* store proxy in custom file */
};
#if (DNA_DEPRECATED_GCC_POISON == 1)