Fixing subtle bugs

This commit is contained in:
2026-01-27 13:40:52 +01:00
parent 574625735b
commit a3a39ea28e
8 changed files with 194 additions and 55 deletions

View File

@@ -35,11 +35,13 @@ impl From<&Project> for ProjectFile {
impl From<ProjectFile> for Project {
fn from(file: ProjectFile) -> Self {
Self {
let mut project = Self {
banks: file.banks,
sample_paths: file.sample_paths,
tempo: file.tempo,
}
};
project.normalize();
project
}
}