mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-07 04:06:45 +01:00
arranger: trying to fix conditional layers
This commit is contained in:
parent
9fcb5a08c6
commit
01db41b75d
5 changed files with 24 additions and 17 deletions
|
|
@ -123,10 +123,12 @@ impl App {
|
|||
self.project.view_scenes_clips()
|
||||
}
|
||||
pub fn view_tracks_inputs <'a> (&'a self) -> impl Content<TuiOut> + use<'a> {
|
||||
Fixed::y(1 + self.project.midi_ins.len() as u16, self.project.view_inputs(self.color))
|
||||
Fixed::y(1 + self.project.midi_ins.len() as u16,
|
||||
self.project.view_inputs(self.color))
|
||||
}
|
||||
pub fn view_tracks_outputs <'a> (&'a self) -> impl Content<TuiOut> + use<'a> {
|
||||
Fixed::y(1 + self.project.midi_outs.len() as u16, self.project.view_outputs(self.color))
|
||||
Fixed::y(1 + self.project.midi_outs.len() as u16,
|
||||
self.project.view_outputs(self.color))
|
||||
}
|
||||
pub fn view_tracks_devices <'a> (&'a self) -> impl Content<TuiOut> + use<'a> {
|
||||
Fixed::y(3, self.project.view_track_devices(self.color))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue