improve keyboard editing for embedded rings

pull/3/merge
Jens Mönig 2015-07-30 14:49:10 +02:00
rodzic 4360e981d1
commit 8601925acc
2 zmienionych plików z 6 dodań i 1 usunięć

Wyświetl plik

@ -156,7 +156,7 @@ DialogBoxMorph, BlockInputFragmentMorph, PrototypeHatBlockMorph, Costume*/
// Global stuff ////////////////////////////////////////////////////////
modules.blocks = '2015-July-27';
modules.blocks = '2015-July-30';
var SyntaxElementMorph;
var BlockMorph;
@ -11675,6 +11675,7 @@ ScriptFocusMorph.prototype.items = function () {
!(each instanceof TemplateSlotMorph) &&
(!each.isStatic ||
each.choices ||
each instanceof RingMorph ||
each instanceof MultiArgMorph ||
each instanceof CommandSlotMorph);
});

Wyświetl plik

@ -2550,3 +2550,7 @@ ______
* Morphic: escalate origin with “accept” and “cancel” events from text cursors
* BYOB: keep BlockEditors open when <enter> or <esc> keys are pressed
* GUI: stop keyboard editing of blocks when selecting another sprite
150730
------
* Blocks: improve keyboard editing for embedded rings