Avoiding Sprite names translation on Corral 'parent...' menu

pull/89/head
Joan Guillén i Pelegay 2019-11-08 15:21:06 +01:00
rodzic 4c598f5496
commit ccb172e83d
1 zmienionych plików z 11 dodań i 1 usunięć

Wyświetl plik

@ -6418,7 +6418,17 @@ SpriteMorph.prototype.chooseExemplar = function () {
(this.exemplar ? this.exemplar.name : localize('none'))
);
other.forEach(function (eachSprite) {
menu.addItem(eachSprite.name, eachSprite);
menu.addItem(
eachSprite.name,
eachSprite,
null, // hint
null, // color
null, // bold
null, // italic
null, // doubleClickAction
null, // shortcut
true // verbatim
);
});
menu.addLine();
menu.addItem(localize('none'), null);