Feat: build script UI/UX

This commit is contained in:
2026-03-17 13:26:48 +01:00
parent c507552b7c
commit 85cacfe53e

View File

@@ -174,7 +174,6 @@ pub struct SharedSequencerState {
pub event_count: usize, pub event_count: usize,
pub tempo: f64, pub tempo: f64,
pub beat: f64, pub beat: f64,
pub playing: bool,
pub script_trace: Option<ExecutionTrace>, pub script_trace: Option<ExecutionTrace>,
pub print_output: Option<String>, pub print_output: Option<String>,
} }
@@ -185,7 +184,6 @@ pub struct SequencerSnapshot {
pub event_count: usize, pub event_count: usize,
pub tempo: f64, pub tempo: f64,
pub beat: f64, pub beat: f64,
pub playing: bool,
script_trace: Option<ExecutionTrace>, script_trace: Option<ExecutionTrace>,
pub print_output: Option<String>, pub print_output: Option<String>,
} }
@@ -198,7 +196,6 @@ impl From<&SharedSequencerState> for SequencerSnapshot {
event_count: s.event_count, event_count: s.event_count,
tempo: s.tempo, tempo: s.tempo,
beat: s.beat, beat: s.beat,
playing: s.playing,
script_trace: s.script_trace.clone(), script_trace: s.script_trace.clone(),
print_output: s.print_output.clone(), print_output: s.print_output.clone(),
} }
@@ -214,7 +211,6 @@ impl SequencerSnapshot {
event_count: 0, event_count: 0,
tempo: 0.0, tempo: 0.0,
beat: 0.0, beat: 0.0,
playing: false,
script_trace: None, script_trace: None,
print_output: None, print_output: None,
} }
@@ -1264,7 +1260,6 @@ impl SequencerState {
event_count: self.event_count, event_count: self.event_count,
tempo: self.last_tempo, tempo: self.last_tempo,
beat: self.last_beat, beat: self.last_beat,
playing: self.last_playing,
script_trace: self.script_trace.clone(), script_trace: self.script_trace.clone(),
print_output: self.print_output.clone(), print_output: self.print_output.clone(),
} }