diff --git a/src/groovebox/groovebox_tui.rs b/src/groovebox/groovebox_tui.rs index 0bd1601d..54542d95 100644 --- a/src/groovebox/groovebox_tui.rs +++ b/src/groovebox/groovebox_tui.rs @@ -42,7 +42,7 @@ impl Groovebox { } fn sampler_view (&self) -> impl Content + 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)))) }