Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/transform/transform_conversions.c
- This file is larger than 256 KB, so syntax highlighting is disabled by default.
| Show First 20 Lines • Show All 6,084 Lines • ▼ Show 20 Lines | #else // durian hack | ||||
| if (BKE_sequence_test_overlap(seqbasep, seq)) { | if (BKE_sequence_test_overlap(seqbasep, seq)) { | ||||
| BKE_sequence_base_shuffle(seqbasep, seq, t->scene); | BKE_sequence_base_shuffle(seqbasep, seq, t->scene); | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| /* done with effects */ | /* done with effects */ | ||||
| } | } | ||||
| } | DEG_id_tag_update(&t->scene->id, ID_RECALC_SEQUENCER_STRIPS); | ||||
| } /*done with overlap */ | |||||
| } | } | ||||
| #endif | #endif | ||||
| for (seq = seqbasep->first; seq; seq = seq->next) { | for (seq = seqbasep->first; seq; seq = seq->next) { | ||||
| /* We might want to build a list of effects that need to be updated during transform */ | /* We might want to build a list of effects that need to be updated during transform */ | ||||
| if (seq->type & SEQ_TYPE_EFFECT) { | if (seq->type & SEQ_TYPE_EFFECT) { | ||||
| if (seq->seq1 && seq->seq1->flag & SELECT) { | if (seq->seq1 && seq->seq1->flag & SELECT) { | ||||
| BKE_sequence_calc(t->scene, seq); | BKE_sequence_calc(t->scene, seq); | ||||
| ▲ Show 20 Lines • Show All 3,603 Lines • Show Last 20 Lines | |||||