fix: place new overlay tracks at the top of the timeline
This commit is contained in:
parent
e4b67094e7
commit
e43b859439
|
|
@ -329,7 +329,7 @@ describe("resolveTrackPlacement", () => {
|
|||
).toEqual({
|
||||
kind: "newTrack",
|
||||
trackType: "graphic",
|
||||
insertIndex: 1,
|
||||
insertIndex: 0,
|
||||
insertPosition: null,
|
||||
});
|
||||
});
|
||||
|
|
|
|||
|
|
@ -176,7 +176,7 @@ export function resolveTrackPlacement({
|
|||
return resolveAlwaysNewTrack({
|
||||
tracks,
|
||||
trackType,
|
||||
position: "default",
|
||||
position: "highest",
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue