Compare commits
No commits in common. "24bd733ef0efc777a44e993bb8e068a6d15d8fed" and "9cc8609244ca940c9732efd0c2d3edd31497a218" have entirely different histories.
24bd733ef0
...
9cc8609244
1 changed files with 3 additions and 3 deletions
|
|
@ -50,7 +50,7 @@ class Engine:
|
|||
}
|
||||
if 'gridChange' not in self.state:
|
||||
self.state['gridChange'] = {
|
||||
'nextClip': {'locked': True, 'value': 4},
|
||||
'nextClip': {'locked': False, 'value': 4},
|
||||
'nextPlaylist': {'locked': False, 'value': 4},
|
||||
'staySame': {'locked': False, 'value': 8}
|
||||
}
|
||||
|
|
@ -137,10 +137,10 @@ class Engine:
|
|||
next_playlist_index.append(i)
|
||||
break
|
||||
# Discuss how this behavour should be: should it switch to a new playlist if it is the end of the playlist clip sequence already?
|
||||
elif prev_grid_list[i].get('playlistPosition', 0) + 1 == len(playlist['clips']):
|
||||
elif prev_grid_list[i].get('playlistPosition') + 1 == len(playlist['clips']):
|
||||
playlist_pos = 0
|
||||
else:
|
||||
playlist_pos = prev_grid_list[i].get('playlistPosition', 0) + 1
|
||||
playlist_pos = prev_grid_list[i].get('playlistPosition') + 1
|
||||
|
||||
rec_list.append((i, {
|
||||
'clips': playlist['clips'],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue