mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-09 13:16:44 +01:00
wip: long awaited fixes to main sequencer
This commit is contained in:
parent
2837ffff4a
commit
78e5469b32
17 changed files with 391 additions and 563 deletions
|
|
@ -12,13 +12,8 @@ pub use std::thread::{spawn, JoinHandle};
|
|||
pub use std::time::Duration;
|
||||
pub use std::collections::BTreeMap;
|
||||
pub use std::sync::{
|
||||
Arc,
|
||||
Mutex, MutexGuard,
|
||||
atomic::{
|
||||
Ordering,
|
||||
AtomicBool,
|
||||
AtomicUsize
|
||||
},
|
||||
Arc, Mutex, MutexGuard,
|
||||
atomic::{Ordering, AtomicBool, AtomicUsize},
|
||||
mpsc::{self, channel, Sender, Receiver}
|
||||
};
|
||||
|
||||
|
|
@ -33,21 +28,8 @@ pub use ::crossterm::{
|
|||
},
|
||||
};
|
||||
|
||||
pub use ::ratatui::{
|
||||
prelude::{
|
||||
Buffer, Rect, Style, Color, CrosstermBackend, Layout, Stylize, Direction,
|
||||
Line, Constraint
|
||||
},
|
||||
widgets::{Widget, WidgetRef},
|
||||
//style::Stylize,
|
||||
};
|
||||
|
||||
pub use ::midly::{
|
||||
MidiMessage,
|
||||
live::LiveEvent,
|
||||
num::u7
|
||||
};
|
||||
|
||||
pub use ::ratatui::prelude::*;
|
||||
pub use ::midly::{MidiMessage, live::LiveEvent, num::u7};
|
||||
pub use crate::{key, keymap};
|
||||
|
||||
/// Run a device as the root of the app.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue