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>2021-03-17 01:15:11 +0300
committerRichard Antalik <richardantalik@gmail.com>2021-03-17 01:18:21 +0300
commit262a0988466e95ab31b834a6479b8be7ec1023d6 (patch)
tree41b7de31e2f1114189bd003d010d9dbd3ac3ec72 /source/blender/editors/space_sequencer/sequencer_add.c
parent9a56a3865c06b472ac54c0351e270dcf738add07 (diff)
Fix issues with automatic proxy building
After merging patches and resolving conflicts, typo prevented correct operation. This uncovered crash on NULL dereference as well.
Diffstat (limited to 'source/blender/editors/space_sequencer/sequencer_add.c')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_add.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_add.c b/source/blender/editors/space_sequencer/sequencer_add.c
index 63946778a19..5d6d24dae74 100644
--- a/source/blender/editors/space_sequencer/sequencer_add.c
+++ b/source/blender/editors/space_sequencer/sequencer_add.c
@@ -577,7 +577,7 @@ static IMB_Proxy_Size seq_get_proxy_size_flags(bContext *C)
static void seq_build_proxy(bContext *C, Sequence *seq)
{
- if (U.sequencer_proxy_setup == USER_SEQ_PROXY_SETUP_AUTOMATIC) {
+ if (U.sequencer_proxy_setup != USER_SEQ_PROXY_SETUP_AUTOMATIC) {
return;
}