wip: fix keys rendering (notes still offset though)

This commit is contained in:
🪞👃🪞 2024-07-13 22:30:29 +03:00
parent 2fc8e84551
commit 7ef97bcf3a
7 changed files with 60 additions and 19 deletions

View file

@ -28,7 +28,7 @@ pub struct App {
/// Display mode of chain section
pub chain_mode: bool,
/// Paths to user directories
xdg: Option<Arc<XdgApp>>,
_xdg: Option<Arc<XdgApp>>,
/// Main audio outputs.
pub audio_outs: Vec<Arc<Port<Unowned>>>,
/// Number of frames requested by process callback
@ -56,7 +56,7 @@ impl App {
chunk_size: 0,
midi_in: None,
midi_ins: vec![],
xdg: Some(xdg),
_xdg: Some(xdg),
})
}
}