retest: 7e, 1f

This commit is contained in:
i do not exist 2026-07-01 16:35:20 +03:00
parent 383e534692
commit c53c5bf377
4 changed files with 29 additions and 21 deletions

View file

@ -98,7 +98,7 @@ impl Action {
} => {
let name = name.as_ref().map_or("tek", |x|x.as_str());
let jack = Jack::new(&name)?;
let proj = tek_project_new(
let mut proj = tek_project_new(
&jack, Clock::new(&jack, *bpm)?, &lf, &lt, &rf, &rt, &mf, &mt, &mfr, &mtr
)?;
proj.tracks_add(tracks.unwrap_or(0), None, &[], &[])?;
@ -135,7 +135,8 @@ impl Action {
//// FIXME: They don't work properly.
//Ok(app)
//})?)?;
}
},
_ => todo!()
}
Ok(())
}