fix sampler/sequencer alignment

This commit is contained in:
🪞👃🪞 2025-01-03 00:46:00 +01:00
parent 83f840a412
commit a4e61c087a

View file

@ -42,7 +42,7 @@ impl Groovebox {
}
fn sampler_view (&self) -> impl Content<Tui> + use<'_> {
let sampler_w = if self.compact { 4 } else { 11 };
let sampler_y = if self.compact { 0 } else { 1 };
let sampler_y = if self.compact { 1 } else { 0 };
Fixed::x(sampler_w, Push::y(sampler_y, Fill::y(
SampleList::new(self.compact, &self.sampler, &self.editor))))
}