Added a second octave for good measure
upd4.1
Lucas Karahadian 2015-07-02 19:03:43 -07:00
rodzic d3e6310e03
commit 9a6a3a3801
1 zmienionych plików z 15 dodań i 2 usunięć

Wyświetl plik

@ -7816,7 +7816,7 @@ PianoMenuMorph.prototype.drawNew = function () {
item.setPosition(keyposition); item.setPosition(keyposition);
myself.add(item); myself.add(item);
}); });
label.setPosition(new Point(35, 45)); label.setPosition(new Point(90, 45));
this.add(label); this.add(label);
fb = this.fullBounds(); fb = this.fullBounds();
this.silentSetExtent(fb.extent().add(4)); this.silentSetExtent(fb.extent().add(4));
@ -7857,6 +7857,18 @@ function NoteInputMorph() {
NoteInputMorph.prototype.init = function () { NoteInputMorph.prototype.init = function () {
NoteInputMorph.uber.init.call(this); NoteInputMorph.uber.init.call(this);
this.choices = { this.choices = {
'C (48)' : 48,
'D (50)' : 50,
'C# (49)' : 49,
'E (52)' : 52,
'Eb (51)' : 51,
'F (53)' : 53,
'G (55)' : 55,
'F# (54)' : 54,
'A (57)' : 57,
'G# (56)' : 56,
'B (59)' : 59,
'Bb (58)' : 58,
'C (60)' : 60, 'C (60)' : 60,
'D (62)' : 62, 'D (62)' : 62,
'C# (61)' : 61, 'C# (61)' : 61,
@ -7868,7 +7880,8 @@ NoteInputMorph.prototype.init = function () {
'A (69)' : 69, 'A (69)' : 69,
'G# (68)' : 68, 'G# (68)' : 68,
'B (71)' : 71, 'B (71)' : 71,
'Bb (70)' : 70 'Bb (70)' : 70,
'C (72)' : 72
}; };
this.isNumeric = true; this.isNumeric = true;
}; };