add background to status bar + misc

This commit is contained in:
🪞👃🪞 2024-11-03 17:32:41 +02:00
parent d94aa8c8ac
commit 792dab9714
3 changed files with 20 additions and 21 deletions

View file

@ -76,13 +76,13 @@ pub struct Arrangement<E: Engine> {
/// Represents a track in the arrangement
pub struct ArrangementTrack {
/// Name of track
pub name: Arc<RwLock<String>>,
pub name: Arc<RwLock<String>>,
/// Preferred width of track column
pub width: usize,
pub width: usize,
/// Identifying color of track
pub color: ItemColor,
pub color: ItemColor,
/// MIDI player/recorder
pub player: PhrasePlayer,
pub player: PhrasePlayer,
}
#[derive(Default, Debug)]
pub struct Scene {