Skip to content

Commit 0f36d59

Browse files
authored
FIXES ISSUE #4018 More default EDOs for temperament
changes the define temperament block's frequency selection from division to exponential format
1 parent 59df238 commit 0f36d59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/widgets/temperament.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1774,7 +1774,7 @@ function TemperamentWidget() {
17741774
for (let i = 0; i < this.pitchNumber; i++) {
17751775
const idx = newStack.length;
17761776
if (
1777-
this.inTemperament === "equal" ||
1777+
this.inTemperament.startsWith("equal") ||
17781778
this.inTemperament === "1/3 comma meantone" ||
17791779
(this.typeOfEdit === "equal" && this.divisions === this.pitchNumber)
17801780
) {

0 commit comments

Comments
 (0)