New shots should start with 'todo' status.
In a later version this default status should either be set server-side and returned in the POST response, or be taken from the project definition by this add-on.
This commit is contained in:
parent
19d54b7fd6
commit
baac86f59b
@ -164,7 +164,7 @@ class AttractOperatorMixin:
|
|||||||
|
|
||||||
prop = {'name': strip.name,
|
prop = {'name': strip.name,
|
||||||
'description': '',
|
'description': '',
|
||||||
'properties': {'status': 'on_hold',
|
'properties': {'status': 'todo',
|
||||||
'notes': '',
|
'notes': '',
|
||||||
'trim_start_in_frames': strip.frame_offset_start,
|
'trim_start_in_frames': strip.frame_offset_start,
|
||||||
'duration_in_edit_in_frames': strip.frame_final_duration,
|
'duration_in_edit_in_frames': strip.frame_final_duration,
|
||||||
@ -188,6 +188,7 @@ class AttractOperatorMixin:
|
|||||||
strip.atc_name = node['name']
|
strip.atc_name = node['name']
|
||||||
strip.atc_description = node['description']
|
strip.atc_description = node['description']
|
||||||
strip.atc_notes = node['properties']['notes']
|
strip.atc_notes = node['properties']['notes']
|
||||||
|
strip.atc_status = node['properties']['status']
|
||||||
|
|
||||||
draw.tag_redraw_all_sequencer_editors()
|
draw.tag_redraw_all_sequencer_editors()
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user