Feat: more predictable projet load behavior
Some checks failed
Deploy Website / deploy (push) Failing after 4m48s

This commit is contained in:
2026-02-02 01:01:01 +01:00
parent 6b95f31afd
commit 71146c7cea
5 changed files with 35 additions and 2 deletions

View File

@@ -28,4 +28,9 @@ impl PlaybackState {
pub fn toggle(&mut self) {
self.playing = !self.playing;
}
pub fn clear_queues(&mut self) {
self.staged_changes.clear();
self.queued_changes.clear();
}
}