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:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-03-26 16:45:10 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-03-26 16:45:10 +0400
commit0c07c33fec4ef04f2931863f40f4447aaf810064 (patch)
tree55c8d31db22f7b5c2ed45c25e7bb0bf4cf388abe /source/blender/editors/space_clip
parent6e076c41641ff5a8bbb8377b1d1bf73c128ea195 (diff)
Correction to recent prefetch commit
When using movie as a clip no need to prefetch in cases no proxies are sued at this moment.
Diffstat (limited to 'source/blender/editors/space_clip')
-rw-r--r--source/blender/editors/space_clip/clip_editor.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/space_clip/clip_editor.c b/source/blender/editors/space_clip/clip_editor.c
index 05e05b95967..b00cc564a99 100644
--- a/source/blender/editors/space_clip/clip_editor.c
+++ b/source/blender/editors/space_clip/clip_editor.c
@@ -1142,6 +1142,9 @@ static bool prefetch_check_early_out(const bContext *C)
if ((user->render_flag & MCLIP_PROXY_RENDER_UNDISTORT) == 0)
return true;
}
+ else {
+ return true;
+ }
}
clip_len = BKE_movieclip_get_duration(clip);