From b27eb901b4b5e002bad97ecd208631b289762753 Mon Sep 17 00:00:00 2001 From: Nathan Dinsmore Date: Fri, 19 Apr 2013 11:18:00 -0400 Subject: Fixed #59 The "Export tools..." and "Export project as plain text..." menu items no longer have a space before their trailing ellipses. --- gui.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gui.js') diff --git a/gui.js b/gui.js index f2ac1ac..8edc1ed 100644 --- a/gui.js +++ b/gui.js @@ -1989,7 +1989,7 @@ IDE_Morph.prototype.projectMenu = function () { menu.addItem( shiftClicked ? - 'Export project as plain text ...' : 'Export project...', + 'Export project as plain text...' : 'Export project...', function () { if (myself.projectName) { myself.exportProject(myself.projectName, shiftClicked); @@ -2004,7 +2004,7 @@ IDE_Morph.prototype.projectMenu = function () { ); menu.addItem( - 'Export blocks ...', + 'Export blocks...', function () {myself.exportGlobalBlocks(); }, 'show global custom block definitions as XML\nin a new browser window' ); -- cgit v1.3.1