From c4968843e4129eb1b7355a20e6a5e72e67dea704 Mon Sep 17 00:00:00 2001 From: jmoenig Date: Fri, 11 Jul 2014 17:59:16 +0200 Subject: fixed #508 (don’t popup empty menus) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit thanks, @cycomached! --- objects.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'objects.js') diff --git a/objects.js b/objects.js index 1a9bb63..3cd3ca5 100644 --- a/objects.js +++ b/objects.js @@ -125,7 +125,7 @@ PrototypeHatBlockMorph*/ // Global stuff //////////////////////////////////////////////////////// -modules.objects = '2014-July-08'; +modules.objects = '2014-July-11'; var SpriteMorph; var StageMorph; @@ -2577,7 +2577,7 @@ SpriteMorph.prototype.userMenu = function () { menu = new MenuMorph(this); if (ide && ide.isAppMode) { - menu.addItem('help', 'nop'); + // menu.addItem('help', 'nop'); return menu; } menu.addItem("duplicate", 'duplicate'); @@ -5116,7 +5116,7 @@ StageMorph.prototype.userMenu = function () { myself = this; if (ide && ide.isAppMode) { - menu.addItem('help', 'nop'); + // menu.addItem('help', 'nop'); return menu; } menu.addItem("edit", 'edit'); -- cgit v1.3.1