Jens Mönig 2017-10-10 11:20:11 +02:00
rodzic 3e5ca73d09
commit e7148bbf4f
2 zmienionych plików z 11 dodań i 1 usunięć

Wyświetl plik

@ -148,7 +148,7 @@ CustomCommandBlockMorph, SymbolMorph, ToggleButtonMorph*/
// Global stuff ////////////////////////////////////////////////////////
modules.blocks = '2017-September-28';
modules.blocks = '2017-October-10';
var SyntaxElementMorph;
var BlockMorph;
@ -1939,6 +1939,12 @@ SyntaxElementMorph.prototype.showBubble = function (value, exportPic, target) {
if (target instanceof StageMorph) {
anchor = ide.corral.stageIcon;
} else {
if (target.isTemporary) {
target = detect(
target.allExemplars(),
function (each) {return !each.isTemporary; }
);
}
anchor = detect(
ide.corral.frame.contents.children,
function (icon) {return icon.object === target; }

Wyświetl plik

@ -3687,6 +3687,10 @@ Fixes:
------
* changed label of "Method" to "Method Editor", thanks, Brian!
171010
------
* Blocks: fixed #1885
v4.1 Features:
* polymorphic sprite-local custom blocks