Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_sequencer/sequencer_edit.c
| Show First 20 Lines • Show All 3,671 Lines • ▼ Show 20 Lines | void SEQUENCER_OT_rebuild_proxy(wmOperatorType *ot) | ||||
| /* flags */ | /* flags */ | ||||
| ot->flag = OPTYPE_REGISTER; | ot->flag = OPTYPE_REGISTER; | ||||
| } | } | ||||
| static int sequencer_enable_proxies_invoke(bContext *C, | static int sequencer_enable_proxies_invoke(bContext *C, | ||||
| wmOperator *op, | wmOperator *op, | ||||
| const wmEvent *UNUSED(event)) | const wmEvent *UNUSED(event)) | ||||
| { | { | ||||
| return WM_operator_props_dialog_popup(C, op, 200, 100); | return WM_operator_props_dialog_popup(C, op, 200); | ||||
| } | } | ||||
| static int sequencer_enable_proxies_exec(bContext *C, wmOperator *op) | static int sequencer_enable_proxies_exec(bContext *C, wmOperator *op) | ||||
| { | { | ||||
| Scene *scene = CTX_data_scene(C); | Scene *scene = CTX_data_scene(C); | ||||
| Editing *ed = BKE_sequencer_editing_get(scene, false); | Editing *ed = BKE_sequencer_editing_get(scene, false); | ||||
| Sequence *seq; | Sequence *seq; | ||||
| bool proxy_25 = RNA_boolean_get(op->ptr, "proxy_25"); | bool proxy_25 = RNA_boolean_get(op->ptr, "proxy_25"); | ||||
| ▲ Show 20 Lines • Show All 562 Lines • Show Last 20 Lines | |||||