mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 11:46:41 +01:00
polite outline
This commit is contained in:
parent
701ea3fc27
commit
62bfb0120b
3 changed files with 109 additions and 121 deletions
|
|
@ -115,28 +115,16 @@ impl App {
|
|||
)
|
||||
}
|
||||
pub fn view_arranger_inputs <'a> (&'a self) -> impl Content<TuiOut> + use<'a> {
|
||||
Fixed::y(3, Bsp::e(
|
||||
Fixed::x(20, Tui::bg(self.color.darker.rgb, Fill::xy(""))),
|
||||
self.project.view_track_inputs(self.color)
|
||||
))
|
||||
Fixed::y(3, self.project.view_track_inputs(self.color))
|
||||
}
|
||||
pub fn view_arranger_outputs <'a> (&'a self) -> impl Content<TuiOut> + use<'a> {
|
||||
Fixed::y(3, Bsp::e(
|
||||
Fixed::x(20, Tui::bg(self.color.darker.rgb, Fill::xy(""))),
|
||||
self.project.view_track_outputs(self.color)
|
||||
))
|
||||
Fixed::y(3, self.project.view_track_outputs(self.color))
|
||||
}
|
||||
pub fn view_arranger_devices <'a> (&'a self) -> impl Content<TuiOut> + use<'a> {
|
||||
Fixed::y(3, Bsp::e(
|
||||
Fixed::x(20, Tui::bg(self.color.darker.rgb, Fill::xy(""))),
|
||||
self.project.view_track_devices(self.color)
|
||||
))
|
||||
Fixed::y(3, self.project.view_track_devices(self.color))
|
||||
}
|
||||
pub fn view_arranger_tracks <'a> (&'a self) -> impl Content<TuiOut> + use<'a> {
|
||||
Fixed::y(2, Bsp::e(
|
||||
Fixed::x(20, Tui::bg(self.color.darker.rgb, Fill::xy(""))),
|
||||
self.project.view_track_names(self.color)
|
||||
))
|
||||
Fixed::y(3, self.project.view_track_names(self.color))
|
||||
}
|
||||
pub fn view_arranger_track_names (&self) -> impl Content<TuiOut> + use<'_> {
|
||||
self.project.view_track_names(self.color)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue