From 238e07ddde229ff110bae225b98426f30e7a4a0c Mon Sep 17 00:00:00 2001 From: Paulo Reis Date: Tue, 25 Oct 2016 14:59:20 +0100 Subject: [PATCH] Save syntax checking as a user setting. --- .../coffee/ide/settings/controllers/SettingsController.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/public/coffee/ide/settings/controllers/SettingsController.coffee b/services/web/public/coffee/ide/settings/controllers/SettingsController.coffee index 29bc8e979c..bde479991b 100644 --- a/services/web/public/coffee/ide/settings/controllers/SettingsController.coffee +++ b/services/web/public/coffee/ide/settings/controllers/SettingsController.coffee @@ -30,7 +30,7 @@ define [ $scope.$watch "settings.syntaxValidation", (syntaxValidation, oldSyntaxValidation) => if syntaxValidation != oldSyntaxValidation - settings.saveProjectSettings({syntaxValidation: syntaxValidation}) + settings.saveSettings({syntaxValidation: syntaxValidation}) $scope.$watch "project.spellCheckLanguage", (language, oldLanguage) => return if @ignoreUpdates