From 2ecdf1c9e453e6ca710dc975ee20455140125094 Mon Sep 17 00:00:00 2001 From: jmoenig Date: Tue, 8 Jul 2014 19:27:10 +0200 Subject: fixed #490 --- blocks.js | 2 +- history.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/blocks.js b/blocks.js index 49eb111..f02001b 100644 --- a/blocks.js +++ b/blocks.js @@ -6504,7 +6504,7 @@ InputSlotMorph.prototype.collidablesMenu = function () { allNames = []; stage.children.forEach(function (morph) { - if (morph instanceof SpriteMorph) { + if (morph instanceof SpriteMorph && !morph.isClone) { if (morph.name !== rcvr.name) { allNames = allNames.concat(morph.name); } diff --git a/history.txt b/history.txt index bddc550..29d71ec 100755 --- a/history.txt +++ b/history.txt @@ -2186,3 +2186,4 @@ ______ * GUI, Objects: add keyboard shortcut for “new project”: ctr-n * revert changes made for JSLint’s sake after the issue was fixed in JSLint * Blocks: change “delete” behavior in context menus to only delete this particular blocks (and reconnect the next block to the previous one) +* fixed #490 -- cgit v1.3.1