kopia lustrzana https://github.com/backface/turtlestitch
adjusted keyboard typing for command blocks inside reporter rings
rodzic
2a20052349
commit
ba46761576
|
|
@ -44,6 +44,7 @@
|
|||
* Blocks: improved dropping command blocks into reporter rings
|
||||
* Morphic: simplified and optimized Node>>parentThatIsA / parentThatIsAnyOf
|
||||
* Blocks, Lists, Tables: refactored for optimized parent-by-type detection
|
||||
* Blocks: adjusted keyboard typing for command blocks inside reporter rings
|
||||
|
||||
### 2019-02-06
|
||||
* Blocks, BYOB: refactored custom block input options and drop-down menus
|
||||
|
|
|
|||
|
|
@ -12693,6 +12693,10 @@ ScriptFocusMorph.prototype.insertBlock = function (block) {
|
|||
this.fixLayout();
|
||||
} else if (pb instanceof CommandSlotMorph) {
|
||||
pb.nestedBlock(block);
|
||||
} else if (pb instanceof RingReporterSlotMorph) {
|
||||
block.nextBlock(pb.nestedBlock());
|
||||
pb.add(block);
|
||||
pb.fixLayout();
|
||||
} else if (pb instanceof CommandBlockMorph) {
|
||||
pb.nextBlock(block);
|
||||
}
|
||||
|
|
|
|||
Ładowanie…
Reference in New Issue