wip: EdnKeymap loads

This commit is contained in:
🪞👃🪞 2025-01-12 01:57:00 +01:00
parent 364d617d37
commit f485a068a8
13 changed files with 14 additions and 8 deletions

View file

@ -33,7 +33,7 @@ impl App {
midi_tos: &[PortConnection],
) -> Self {
Self {
edn: include_str!("../edn/sequencer.edn").to_string(),
edn: include_str!("../edn/sequencer-view.edn").to_string(),
jack: jack.clone(),
pool: Some(pool),
editor: Some(editor),
@ -56,7 +56,7 @@ impl App {
audio_tos: &[&[PortConnection]],
) -> Self {
Self {
edn: include_str!("../edn/groovebox.edn").to_string(),
edn: include_str!("../edn/groovebox-view.edn").to_string(),
sampler: Some(sampler),
..Self::sequencer(
jack, pool, editor,
@ -78,7 +78,7 @@ impl App {
track_width: usize,
) -> Self {
let mut arranger = Self {
edn: include_str!("../edn/arranger.edn").to_string(),
edn: include_str!("../edn/arranger-view.edn").to_string(),
..Self::groovebox(
jack, pool, editor,
None, midi_froms, midi_tos,