Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_sequencer.c
| Show First 20 Lines • Show All 921 Lines • ▼ Show 20 Lines | |||||
| { | { | ||||
| Scene *scene = (Scene *)ptr->owner_id; | Scene *scene = (Scene *)ptr->owner_id; | ||||
| Sequence *seq = (Sequence *)(ptr->data); | Sequence *seq = (Sequence *)(ptr->data); | ||||
| SEQ_add_reload_new_file(bmain, scene, seq, true); | SEQ_add_reload_new_file(bmain, scene, seq, true); | ||||
| SEQ_time_update_sequence(scene, seq); | SEQ_time_update_sequence(scene, seq); | ||||
| rna_Sequence_invalidate_raw_update(bmain, scene, ptr); | rna_Sequence_invalidate_raw_update(bmain, scene, ptr); | ||||
| } | } | ||||
| static void rna_Sequence_sound_update(Main *UNUSED(bmain), Scene *scene, PointerRNA *UNUSED(ptr)) | static void rna_Sequence_sound_update(Main *bmain, Scene *scene, PointerRNA *UNUSED(ptr)) | ||||
| { | { | ||||
| DEG_id_tag_update(&scene->id, ID_RECALC_SEQUENCER_STRIPS | ID_RECALC_AUDIO); | DEG_id_tag_update(&scene->id, ID_RECALC_SEQUENCER_STRIPS | ID_RECALC_AUDIO); | ||||
| DEG_relations_tag_update(bmain); | |||||
| } | } | ||||
| static int seqproxy_seq_cmp_fn(Sequence *seq, void *arg_pt) | static int seqproxy_seq_cmp_fn(Sequence *seq, void *arg_pt) | ||||
| { | { | ||||
| SequenceSearchData *data = arg_pt; | SequenceSearchData *data = arg_pt; | ||||
| if (seq->strip && seq->strip->proxy == data->data) { | if (seq->strip && seq->strip->proxy == data->data) { | ||||
| data->seq = seq; | data->seq = seq; | ||||
| ▲ Show 20 Lines • Show All 2,391 Lines • Show Last 20 Lines | |||||