summaryrefslogtreecommitdiff
path: root/objects.js
diff options
context:
space:
mode:
Diffstat (limited to 'objects.js')
-rw-r--r--objects.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/objects.js b/objects.js
index e76126c..1a9bb63 100644
--- a/objects.js
+++ b/objects.js
@@ -4581,6 +4581,9 @@ StageMorph.prototype.fireKeyEvent = function (key) {
if (evt === 'ctrl f') {
return this.parentThatIsA(IDE_Morph).currentSprite.searchBlocks();
}
+ if (evt === 'ctrl n') {
+ return this.parentThatIsA(IDE_Morph).createNewProject();
+ }
if (evt === 'ctrl o') {
return this.parentThatIsA(IDE_Morph).openProjectsBrowser();
}