reenable inc/dec phrase

This commit is contained in:
🪞👃🪞 2024-07-11 21:32:12 +03:00
parent c3040cef1c
commit 2c8f4857dd
11 changed files with 217 additions and 585 deletions

View file

@ -10,6 +10,9 @@ pub struct JackDevice {
/// The "real" readable/writable `Port`s are owned by the `state`.
pub ports: UnownedJackPorts,
}
render!(JackDevice |self, buf, area| {
self.state.read().unwrap().render(buf, area)
});
ports!(JackDevice {
audio: {
ins: |s|Ok(s.ports.audio_ins.values().collect()),