Skip to content

Commit

Permalink
fixed #1254
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoenig committed Jun 20, 2016
1 parent 364155d commit ee803ad
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions gui.js
Expand Up @@ -71,7 +71,7 @@ isRetinaSupported*/

// Global stuff ////////////////////////////////////////////////////////

modules.gui = '2016-June-18';
modules.gui = '2016-June-19';

// Declarations

Expand Down Expand Up @@ -4325,7 +4325,10 @@ IDE_Morph.prototype.languageMenu = function () {
menu.addItem(
(SnapTranslator.language === lang ? '\u2713 ' : ' ') +
SnapTranslator.languageName(lang),
function () {myself.setLanguage(lang); }
function () {
myself.loadNewProject = false;
myself.setLanguage(lang);
}
);
});
menu.popup(world, pos);
Expand Down

0 comments on commit ee803ad

Please sign in to comment.