From d2eb636c698849dbb28be37601f204da3ea4ae17 Mon Sep 17 00:00:00 2001 From: jmoenig Date: Thu, 5 Jan 2017 14:07:18 +0100 Subject: [PATCH] =?UTF-8?q?changed=20shortcut=20symbol=20for=20=E2=80=9CCt?= =?UTF-8?q?rl=E2=80=9D=20key=20to=20^?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- blocks.js | 4 ++-- gui.js | 8 ++++---- history.txt | 1 + 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/blocks.js b/blocks.js index e47a1ff1..4d700e14 100644 --- a/blocks.js +++ b/blocks.js @@ -5984,7 +5984,7 @@ ScriptsMorph.prototype.userMenu = function () { localize('undrop') ], 'undrop', - '⌘Z', + '^Z', 'undo the last\nblock drop\nin this pane' ); } @@ -5999,7 +5999,7 @@ ScriptsMorph.prototype.userMenu = function () { localize('redrop') ], 'redrop', - '⌘Y', + '^Y', 'redo the last undone\nblock drop\nin this pane' ); } diff --git a/gui.js b/gui.js index e7387ea9..24a6f056 100644 --- a/gui.js +++ b/gui.js @@ -72,7 +72,7 @@ isRetinaSupported, SliderMorph, Animation*/ // Global stuff //////////////////////////////////////////////////////// -modules.gui = '2017-January-03'; +modules.gui = '2017-January-05'; // Declarations @@ -2798,9 +2798,9 @@ IDE_Morph.prototype.projectMenu = function () { menu = new MenuMorph(this); menu.addItem('Project notes...', 'editProjectNotes'); menu.addLine(); - menu.addPair('New', 'createNewProject', '⌘N'); - menu.addPair('Open...', 'openProjectsBrowser', '⌘O'); - menu.addPair('Save', "save", '⌘S'); + menu.addPair('New', 'createNewProject', '^N'); + menu.addPair('Open...', 'openProjectsBrowser', '^O'); + menu.addPair('Save', "save", '^S'); menu.addItem('Save As...', 'saveProjectsBrowser'); menu.addLine(); menu.addItem( diff --git a/history.txt b/history.txt index 9a88cbae..8caf4bec 100755 --- a/history.txt +++ b/history.txt @@ -3251,6 +3251,7 @@ http://snap.berkeley.edu/run#cloud:Username=jens&ProjectName=rotation ------ * Blocks: refactored variable refactoring code * fixed #1604 +* Blocks, GUI: changed shortcut symbol for “Ctrl” key to ^ == v4.10 === (in development)