Skip to content

Commit 317654a

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 256f677 commit 317654a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

js/widgets/temperament.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1774,9 +1774,11 @@ 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 === "equal" || this.inTemperament === "equal5" ||
1778+
this.inTemperament === "equal7" || this.inTemperament === "equal19" ||
1779+
this.inTemperament === "equal31" ) ||
17781780
this.inTemperament === "1/3 comma meantone" ||
1779-
(this.typeOfEdit === "equal" && this.divisions === this.pitchNumber)
1781+
(this.typeOfEdit === "equal" && this.divisions === this.pitchNumber)
17801782
) {
17811783
newStack.push([
17821784
idx,

0 commit comments

Comments
 (0)