mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 03:36:41 +01:00
add new Selection variants
This commit is contained in:
parent
7b432d12b4
commit
8adbdc5bc7
4 changed files with 161 additions and 109 deletions
|
|
@ -185,12 +185,12 @@ impl Cli {
|
|||
_ => vec![]
|
||||
},
|
||||
scenes,
|
||||
selected: Selection::Clip(0, 0),
|
||||
selected: Selection::TrackClip { track: 0, scene: 0 },
|
||||
..Default::default()
|
||||
};
|
||||
if let &LaunchMode::Arranger { scenes, tracks, track_width, .. } = mode {
|
||||
app.arranger = Default::default();
|
||||
app.selected = Selection::Clip(1, 1);
|
||||
app.selected = Selection::TrackClip { track: 1, scene: 1 };
|
||||
app.scenes_add(scenes)?;
|
||||
app.tracks_add(tracks, Some(track_width), &[], &[])?;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue