Skip to content

Commit

Permalink
Merge pull request #432 from xenharmonic-devs/universal-minus
Browse files Browse the repository at this point in the history
Disable universal minus operator when importing Scala files
  • Loading branch information
frostburn authored Nov 26, 2023
2 parents 78483c2 + 1d3f006 commit 697735d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/importers/scala.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class ScalaImporter extends TextImporter {
throw new Error(`Failed to parse line ${line}`);
}
intervals.push(
parseLine(line, DEFAULT_NUMBER_OF_COMPONENTS, undefined, true)
parseLine(line, DEFAULT_NUMBER_OF_COMPONENTS, undefined, true, false)
);
});
const scale = Scale.fromIntervalArray(intervals);
Expand Down

0 comments on commit 697735d

Please sign in to comment.