From 85cacfe53ef6fbc584042ee8cdd615e27ebac537 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Forment?= Date: Tue, 17 Mar 2026 13:26:48 +0100 Subject: [PATCH] Feat: build script UI/UX --- src/engine/sequencer.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/engine/sequencer.rs b/src/engine/sequencer.rs index dfa6c13..ea21a1e 100644 --- a/src/engine/sequencer.rs +++ b/src/engine/sequencer.rs @@ -174,7 +174,6 @@ pub struct SharedSequencerState { pub event_count: usize, pub tempo: f64, pub beat: f64, - pub playing: bool, pub script_trace: Option, pub print_output: Option, } @@ -185,7 +184,6 @@ pub struct SequencerSnapshot { pub event_count: usize, pub tempo: f64, pub beat: f64, - pub playing: bool, script_trace: Option, pub print_output: Option, } @@ -198,7 +196,6 @@ impl From<&SharedSequencerState> for SequencerSnapshot { event_count: s.event_count, tempo: s.tempo, beat: s.beat, - playing: s.playing, script_trace: s.script_trace.clone(), print_output: s.print_output.clone(), } @@ -214,7 +211,6 @@ impl SequencerSnapshot { event_count: 0, tempo: 0.0, beat: 0.0, - playing: false, script_trace: None, print_output: None, } @@ -1264,7 +1260,6 @@ impl SequencerState { event_count: self.event_count, tempo: self.last_tempo, beat: self.last_beat, - playing: self.last_playing, script_trace: self.script_trace.clone(), print_output: self.print_output.clone(), }