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:
Sybren A. Stüvel 2016-09-30 13:58:31 +02:00
parent 19d54b7fd6
commit baac86f59b

View File

@ -164,7 +164,7 @@ class AttractOperatorMixin:
prop = {'name': strip.name,
'description': '',
'properties': {'status': 'on_hold',
'properties': {'status': 'todo',
'notes': '',
'trim_start_in_frames': strip.frame_offset_start,
'duration_in_edit_in_frames': strip.frame_final_duration,
@ -188,6 +188,7 @@ class AttractOperatorMixin:
strip.atc_name = node['name']
strip.atc_description = node['description']
strip.atc_notes = node['properties']['notes']
strip.atc_status = node['properties']['status']
draw.tag_redraw_all_sequencer_editors()