diff options
| author | Gubolin <gubolin@fantasymail.de> | 2014-10-04 13:47:06 +0200 |
|---|---|---|
| committer | Gubolin <gubolin@fantasymail.de> | 2014-10-04 13:47:06 +0200 |
| commit | 5977686aa255e59a9b56703621c15ffa0cf04267 (patch) | |
| tree | 037267baa9bad3ecfb1e8ce73dd002e164d48525 | |
| parent | 45e1f3193b6a0593f084df28ee3d8f194bcea448 (diff) | |
| download | snap-5977686aa255e59a9b56703621c15ffa0cf04267.tar.gz snap-5977686aa255e59a9b56703621c15ffa0cf04267.zip | |
show an error message if project cannot be loaded (fix #190)issue_190
| -rw-r--r-- | gui.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 ''; } } |
