mirror of
https://codeberg.org/unspeaker/tek.git
synced 2026-04-04 05:10:44 +02:00
jammable again - and autoconnects!
This commit is contained in:
parent
3ed9ebddd4
commit
768c2337e7
5 changed files with 98 additions and 59 deletions
|
|
@ -21,9 +21,9 @@ render!(App |self, buf, area| {
|
|||
y = y + TransportView {
|
||||
timebase: &self.timebase,
|
||||
playing: *self.playing.as_ref().unwrap_or(&TransportState::Stopped),
|
||||
record: false,
|
||||
overdub: false,
|
||||
monitor: false,
|
||||
monitor: self.track().map(|t|t.1.monitoring).unwrap_or(false),
|
||||
record: self.track().map(|t|t.1.recording).unwrap_or(false),
|
||||
overdub: self.track().map(|t|t.1.overdub).unwrap_or(false),
|
||||
frame: self.playhead,
|
||||
}.render(buf, area)?.height;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue