mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
fix name and duration population
This commit is contained in:
parent
6700b0896d
commit
1532b9caab
1 changed files with 3 additions and 3 deletions
|
|
@ -136,13 +136,13 @@ def main_window(selection):
|
|||
for segment in tracks.segments:
|
||||
# Add timeline segment to tree
|
||||
QtWidgets.QTreeWidgetItem(tree, [
|
||||
str(sequence.name),
|
||||
str(segment.name),
|
||||
str(sequence.name)[1:-1],
|
||||
str(segment.name)[1:-1],
|
||||
'Compositing',
|
||||
'Ready to Start',
|
||||
'Tape: {} - Duration {}'.format(
|
||||
segment.tape_name,
|
||||
str(segment.source_duration)[4:-1]
|
||||
str(segment.record_duration)[4:-1]
|
||||
),
|
||||
str(segment.comment)[1:-1]
|
||||
]).setFlags(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue