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