Project directory proxies:

Use BL_proxy if directory is blank to avoid filling the whole folder
with files.
This commit is contained in:
Antonis Ryakiotakis 2015-03-26 18:25:06 +01:00
parent 4c7876c740
commit d26c18c05e
1 changed files with 2 additions and 2 deletions

View File

@ -1370,7 +1370,7 @@ static void seq_open_anim_file(Editing *ed, Sequence *seq, bool openfile)
if (ed->proxy_storage == SEQ_EDIT_PROXY_DIR_STORAGE) {
if (ed->proxy_dir[0] == 0)
BLI_strncpy(dir, "//", sizeof(dir));
BLI_strncpy(dir, "//BL_proxy", sizeof(dir));
else
BLI_strncpy(dir, ed->proxy_dir, sizeof(dir));
}
@ -1409,7 +1409,7 @@ static bool seq_proxy_get_fname(Editing *ed, Sequence *seq, int cfra, int render
if (seq->anim && ed->proxy_storage == SEQ_EDIT_PROXY_DIR_STORAGE) {
char fname[FILE_MAXFILE];
if (ed->proxy_dir[0] == 0)
BLI_strncpy(dir, "//", sizeof(dir));
BLI_strncpy(dir, "//BL_proxy", sizeof(dir));
else
BLI_strncpy(dir, ed->proxy_dir, sizeof(dir));
IMB_anim_get_fname(seq->anim, fname, FILE_MAXFILE);