feat: adiciona suporte para excluir faixas de áudio e legenda do arquivo de saída

This commit is contained in:
2026-03-01 15:47:01 -03:00
parent e70612f5ea
commit 8b031f07ec
6 changed files with 205 additions and 20 deletions
+3
View File
@@ -662,6 +662,9 @@ impl eframe::App for App {
ExistingTrackEvent::DriftChanged(id, scale) => {
let _ = AdjustExistingTrackDrift::execute(project, id, scale);
}
ExistingTrackEvent::ExcludeToggled(id) => {
project.toggle_existing_track_excluded(id);
}
ExistingTrackEvent::ExportRequested(id) => {
if let Some(track) =
project.existing_tracks.iter().find(|t| t.id == id).cloned()