undo spacing from bad merge

snap7
Michael Ball 2021-06-29 22:25:49 -07:00
rodzic 32aac68abd
commit 772da1fd94
1 zmienionych plików z 10 dodań i 11 usunięć

Wyświetl plik

@ -9777,18 +9777,17 @@ InputSlotMorph.prototype.audioMenu = function (searching) {
InputSlotMorph.prototype.scenesMenu = function (searching) {
var dict = {},
scenes;
if (!searching) {
scenes = this.parentThatIsA(IDE_Morph).scenes;
if (scenes.length() > 1) {
scenes.itemsArray().forEach(scn => {
if (scn.name) {
dict[scn.name] = scn.name;
}
});
}
scenes;
if (!searching) {
scenes = this.parentThatIsA(IDE_Morph).scenes;
if (scenes.length() > 1) {
scenes.itemsArray().forEach(scn => {
if (scn.name) {
dict[scn.name] = scn.name;
}
});
}
}
dict['~'] = null;
dict.next = ['next'];
dict.previous = ['previous'];