kopia lustrzana https://github.com/backface/turtlestitch
fixed #1885
rodzic
3e5ca73d09
commit
e7148bbf4f
|
@ -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; }
|
||||
|
|
|
@ -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
|
||||
|
|
Ładowanie…
Reference in New Issue