track: remove unused fields
Some checks are pending
/ build (push) Waiting to run

This commit is contained in:
🪞👃🪞 2025-05-12 01:17:21 +03:00
parent e81ae58ab5
commit 6f6078e25a

View file

@ -2,19 +2,15 @@ use crate::*;
#[derive(Debug, Default)] pub struct Track {
/// Name of track
pub name: Arc<str>,
/// Preferred width of track column
pub width: usize,
pub name: Arc<str>,
/// Identifying color of track
pub color: ItemTheme,
pub color: ItemTheme,
/// Preferred width of track column
pub width: usize,
/// MIDI sequencer state
pub sequencer: Sequencer,
pub sequencer: Sequencer,
/// Device chain
pub devices: Vec<Device>,
/// Inputs of 1st device
pub audio_ins: Vec<JackAudioIn>,
/// Outputs of last device
pub audio_outs: Vec<JackAudioOut>,
pub devices: Vec<Device>,
}
has_clock!(|self: Track|self.sequencer.clock);