swap status bars

This commit is contained in:
🪞👃🪞 2025-04-06 02:32:09 +03:00
parent 852522208e
commit c7ee3185c1
2 changed files with 6 additions and 11 deletions

View file

@ -1,9 +1,4 @@
(bsp/n
(fixed/y 1 :transport)
(bsp/s
(fixed/y 1 :status)
(fill/xy
(bsp/a
(fill/xy
(align/e :pool))
:arranger))))
(bsp/s (fixed/y 1 :transport)
(bsp/n (fixed/y 1 :status)
(fill/xy (bsp/a (fill/xy (align/e :pool))
:arranger))))

View file

@ -29,7 +29,7 @@ impl Tek {
fmtd.bpm.update(None, rewrite!(buf, "---.---"));
}
}
pub(crate) fn view_status (&self) -> impl Content<TuiOut> + use<'_> {
pub(crate) fn view_transport (&self) -> impl Content<TuiOut> + use<'_> {
self.update_clock();
let theme = ItemPalette::G[96];
let fmtd = self.fmtd.read().unwrap();
@ -42,7 +42,7 @@ impl Tek {
)))
))))
}
pub(crate) fn view_transport (&self) -> impl Content<TuiOut> + use<'_> {
pub(crate) fn view_status (&self) -> impl Content<TuiOut> + use<'_> {
self.update_clock();
let theme = ItemPalette::G[96];
let fmtd = self.fmtd.read().unwrap();