wip: down to 25 errors woo

This commit is contained in:
🪞👃🪞 2025-05-14 02:13:13 +03:00
parent 89288f2920
commit 6ce83fb27a
25 changed files with 688 additions and 620 deletions

View file

@ -4,11 +4,11 @@ use crate::*;
pub struct Pool {
pub visible: bool,
/// Collection of clips
pub clips: Arc<RwLock<Vec<Arc<RwLock<MidiClip>>>>>,
pub clips: Arc<RwLock<Vec<Arc<RwLock<MidiClip>>>>>,
/// Selected clip
pub clip: AtomicUsize,
pub clip: AtomicUsize,
/// Mode switch
pub mode: Option<PoolMode>,
pub mode: Option<PoolMode>,
/// Embedded file browser
pub browser: Option<Browser>,
}