mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-08 12:46:42 +01:00
sequencer: merge Sequencer and SequencerTrack
This commit is contained in:
parent
1d3d3875fe
commit
6206a43b4a
8 changed files with 171 additions and 190 deletions
|
|
@ -11,13 +11,12 @@ pub struct Arranger {
|
|||
/// Currently selected element.
|
||||
pub selected: ArrangerFocus,
|
||||
/// Collection of tracks.
|
||||
pub tracks: Vec<SequencerTrack>,
|
||||
pub tracks: Vec<Sequencer>,
|
||||
/// Collection of scenes.
|
||||
pub scenes: Vec<Scene>,
|
||||
pub focused: bool,
|
||||
pub entered: bool,
|
||||
pub fixed_height: bool,
|
||||
pub sequencer: Sequencer,
|
||||
pub transport: Option<Arc<RwLock<TransportToolbar>>>,
|
||||
}
|
||||
|
||||
|
|
@ -32,7 +31,6 @@ impl Arranger {
|
|||
entered: true,
|
||||
focused: true,
|
||||
fixed_height: false,
|
||||
sequencer: Sequencer::new(),
|
||||
transport: None
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue