feat: first attemp to support playing multiple tracks in parallel

This commit is contained in:
2026-01-24 22:18:42 +03:00
parent c1c8deb1b3
commit 3e6a8b6e79
12 changed files with 673 additions and 351 deletions
+4 -1
View File
@@ -21,7 +21,10 @@ impl SoundpadGui {
}
if i.key_pressed(Key::Enter) && self.app_state.selected_file.is_some() {
self.play_file(&self.app_state.selected_file.clone().unwrap());
self.play_file(
&self.app_state.selected_file.clone().unwrap(),
i.modifiers.ctrl,
);
}
if !self.app_state.show_settings {