wip: refactor pt.8, 512 errors lol

This commit is contained in:
🪞👃🪞 2024-11-10 15:40:45 +01:00
parent a1818a8504
commit a784f7a6f2
19 changed files with 238 additions and 183 deletions

View file

@ -1,4 +1,4 @@
use scene::*;
use crate::*;
pub struct Arrangement {
/// JACK client handle (needs to not be dropped for standalone mode to work).
@ -56,8 +56,8 @@ pub enum ArrangementCommand {
Go(Direction),
Edit(Option<Arc<RwLock<Phrase>>>),
Scene(SceneCommand),
Track(TrackCommand),
Clip(ClipCommand),
Track(ArrangementTrackCommand),
Clip(ArrangementClipCommand),
}
#[derive(Clone)]