reenable editor in standalone sequencer/groovebox

This commit is contained in:
🪞👃🪞 2025-04-24 00:36:12 +03:00
parent 4b998eaae0
commit ab37e2e7d4
4 changed files with 13 additions and 18 deletions

View file

@ -50,17 +50,17 @@ mod model_select; pub use self::model_select::*;
/// Port handles
pub ports: std::collections::BTreeMap<u32, Port<Unowned>>,
/// View definition
pub view: SourceIter<'static>,
pub view: SourceIter<'static>,
// Input definitions
pub keys: SourceIter<'static>,
pub keys: SourceIter<'static>,
// Input definitions when a clip is focused
pub keys_clip: SourceIter<'static>,
pub keys_clip: SourceIter<'static>,
// Input definitions when a track is focused
pub keys_track: SourceIter<'static>,
// Input definitions when a scene is focused
pub keys_scene: SourceIter<'static>,
// Input definitions when the mix is focused
pub keys_mix: SourceIter<'static>,
pub keys_mix: SourceIter<'static>,
// Cache of formatted strings
pub view_cache: Arc<RwLock<ViewCache>>,
}