From 5977686aa255e59a9b56703621c15ffa0cf04267 Mon Sep 17 00:00:00 2001 From: Gubolin Date: Sat, 4 Oct 2014 13:47:06 +0200 Subject: show an error message if project cannot be loaded (fix #190) --- gui.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gui.js b/gui.js index 2456277..901a73e 100644 --- a/gui.js +++ b/gui.js @@ -284,7 +284,8 @@ IDE_Morph.prototype.openIn = function (world) { } throw new Error('unable to retrieve ' + url); } catch (err) { - return; + myself.showMessage('unable to retrieve project'); + return ''; } } -- cgit v1.3.1