Skip to content

Commit e05e47e

Browse files
authored
Merge pull request #42 from diffusionstudio/konstantin/fix/stack-reorder
removed clip ordering when the track is stacked
2 parents f90ac39 + 1b1febd commit e05e47e

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@diffusionstudio/core",
33
"private": false,
4-
"version": "1.2.1",
4+
"version": "1.2.2",
55
"type": "module",
66
"description": "Build bleeding edge video processing applications",
77
"files": [

src/tracks/track/track.strategies.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@ export class StackInsertStrategy implements InsertStrategy<'STACK'> {
8282
}
8383

8484
public update(_: Clip, track: Track<Clip>): void {
85-
track.clips.sort(startAsc);
86-
8785
let start = 0;
8886

8987
for (const clip of track.clips) {

0 commit comments

Comments
 (0)