removed "transpose" from the palette for now

pull/95/head
jmoenig 2021-01-30 13:25:48 +01:00
rodzic f224e69942
commit af4662bed1
2 zmienionych plików z 4 dodań i 3 usunięć

Wyświetl plik

@ -22,6 +22,7 @@
* objects: added "transpose" to palette for testing
* updated German translation for "transpose"
* morphic: fixed #2768
* objects: removed "transpose" from the palette for now
### 2021-01-29
* threads, objects: new experimental "rotate (list)" primitive relabelling option for "all but first"

Wyświetl plik

@ -2767,7 +2767,7 @@ SpriteMorph.prototype.blockTemplates = function (category) {
blocks.push(block('doForEach'));
blocks.push('-');
blocks.push(block('reportConcatenatedLists'));
blocks.push(block('reportTranspose'));
// blocks.push(block('reportTranspose'));
blocks.push('-');
blocks.push(block('doAddToList'));
blocks.push(block('doDeleteFromList'));
@ -2944,7 +2944,7 @@ SpriteMorph.prototype.freshPalette = function (category) {
'reportListLength',
'reportListIndex',
'reportConcatenatedLists',
'reportTranspose',
// 'reportTranspose',
'reportListContainsItem',
'reportListIsEmpty',
'doForEach',
@ -8928,7 +8928,7 @@ StageMorph.prototype.blockTemplates = function (category) {
blocks.push(block('doForEach'));
blocks.push('-');
blocks.push(block('reportConcatenatedLists'));
blocks.push(block('reportTranspose'));
// blocks.push(block('reportTranspose'));
blocks.push('-');
blocks.push(block('doAddToList'));
blocks.push(block('doDeleteFromList'));