summaryrefslogtreecommitdiff
path: root/gui.js
diff options
context:
space:
mode:
authorNathan Dinsmore <queryselector@gmail.com>2013-04-19 11:18:00 -0400
committerNathan Dinsmore <queryselector@gmail.com>2013-04-19 11:18:00 -0400
commitb27eb901b4b5e002bad97ecd208631b289762753 (patch)
tree4c335900a90b7130dc4771746d5e9b8abf56261f /gui.js
parent7681525cc2f3f900136d745dc95594b3a731dcd1 (diff)
downloadsnap-byow-b27eb901b4b5e002bad97ecd208631b289762753.tar.gz
snap-byow-b27eb901b4b5e002bad97ecd208631b289762753.zip
Fixed #59
The "Export tools..." and "Export project as plain text..." menu items no longer have a space before their trailing ellipses.
Diffstat (limited to 'gui.js')
-rw-r--r--gui.js4
1 files changed, 2 insertions, 2 deletions
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'
);